function PopupPic(sPicURL) { 
     window.open( "/customers/jmsfilmochfoto/templates/popup.htm?"+sPicURL, "MyPic","resizable=1,menu=0,toolbar=0,location=0, top=0, left=0"); 
}

var arrTemp=self.location.href.split("?"); 
var picUrl = (arrTemp.length>0)?arrTemp[1]:""; 
var NS = (navigator.appName=="Netscape")?true:false; 

function FitPic() { 

	document.getElementById('MyImage').src = "/Dialog/Imagebrowser/ImageEditor/getImage.aspx?uidImageGUID=" + picUrl;

    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(); 
} 
