function PopUp(URL,h,w) 
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + w + ",height=" + h + ",left = 740,top = 325');");
}

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 + 75); 
  self.focus(); 
}

