function PopupPic(sPicURL) {
	var newImg = new Image();
	newImg.src = sPicURL;
	var imgheight = newImg.height;
	var imgwidth = newImg.width;
	
	leftVal = (screen.width-imgwidth) / 2;
	topVal = (screen.height-imgheight) / 2;
	var NS = (navigator.appName=="Netscape")?true:false; 
	if (NS) {
		appStr = new String(sPicURL);
		appStr = appStr.replace("/","\\");
		window.open( "pages\\image.html?\\"+appStr, "","resizable=1,HEIGHT=200,WIDTH=200,LEFT="+leftVal+",TOP="+topVal); 
	}else{
		window.open( "pages\\image.html?"+sPicURL, "","resizable=1,HEIGHT=200,WIDTH=200,LEFT="+leftVal+",TOP="+topVal); 
	}
}