// JavaScript Document

    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);
       self.focus();
     };
	 
	function PopupPic(PhotoURL) {
		window.open( "photo.aspx?PhotoURL="+PhotoURL, "", "resizable=0, width=50, height=50");
	}	 
