var arrTemp=self.location.href.split("?"); 
var picUrl = (arrTemp.length>0)?arrTemp[1]:""; 
var NS = (navigator.appName=="Netscape")?true:false; 

function PopupScreenshot(sPicURL) { 
  window.open("/popup.asp?"+sPicURL, "", "resizable=1,height=200,width=200"); 
} 

function PopupImg(pURL){
  var props=window.open(pURL, 'FullScreen', 'alwaysRaised=1,toolbar=0,scrollbars=0,location=0,statusbars=0,menubars=1,resizable=1,width=840,height=630,top=0,left=0');
  props.focus();
  return;
}