// JavaScript Document

   function PopupPic(sPicURL) { 
    popupWIn=window.open( "popup.php?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200"); popupWin.focus();
   }
   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); 
       self.focus();
     }; 
	   
  	
     function WinPopup(apri) {
		var stile = "top=10, left=10, width=612,height=850, resizable=1, scrollbars=yes";
        window.open(apri, "offertaWin", stile);
     }
   
