

//**************************************************
/* function for Pop-up image pages to resize window */

   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 + 40; 
       window.resizeBy(iWidth, iHeight); 
       self.focus(); 
     }; 
	 
	 
//**************************************************

/* Function for Gallery page to generate Pop-up */

 /*  <script language="Javascript"> */
   function PopupPic(sPicURL, PicH, PicW) { 
     window.open( "popup.htm?"+sPicURL, "",  
     "resizable=1,HEIGHT="+PicH,"WIDTH="+PicW); 
   } 
 /*  </script> */
   
//**************************************************


   function PHPPopup(sPicURL, myheight, mywidth) { 
     window.open( "popup.htm?"+sPicURL, "",  
     "resizable=1,HEIGHT="+myheight+",WIDTH="+mywidth); 
   } 

   
//**************************************************

