			function PopupPic(sPicURL) { 
				window.open("popup.php?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200");
			}
			
			var temp=self.location.href.split("?");
			var picUrl = (temp.length>1)?temp[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-1);
				self.focus();
			};