// open pop up image

function PopupPic(sPicURL) {
 	 window.open("pop.html?" + sPicURL,"modelama", "scrollbars=auto,status=no,left=5,top=5,resizable=0,HEIGHT=1,WIDTH=1");
} 


// popup page code

   var arrTemp=self.location.href.split("?");
   var picUrl = (arrTemp.length>0)?arrTemp[1]:"";
   var NS = (navigator.appName=="Netscape")?true:false;

     function FitPic() {
       iWidth = (NS)?window.innerWidth:document.body.clientWidth;
       iHeight = (NS)?window.innerHeight:document.body.clientHeight;
       iWidth = document.images[0].width - iWidth;
       iHeight = document.images[0].height - iHeight;
       window.resizeBy(iWidth, iHeight+108);
       self.focus();
     };
	 
function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}