function PopupPic(sPicURL,winName) {
	window.open( "popUpImage.html?"+sPicURL, winName, "resizable=1,HEIGHT=200,WIDTH=200");
} 



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.document.title = window.name.replace(/\_/gi," ");
	document.images[0].title= window.name.replace(/\_/gi," ");
	document.images[0].alt= window.name.replace(/\_/gi," ");
       	window.resizeBy(iWidth, iHeight);
       	self.focus();
}; 