// This is the MedNet Standard for Javascript Popups
// Jason Resnick
// 12/28/2006

	   function PopupPic(sPicURL) {
	     window.open( "popup.htm?"+sPicURL, "",  
	     "resizable=0");
	   }
		
		function PopupHTML(sURL,sName,w,h,scroll){
			var winl = (screen.width-w)/2;
			var wint = (screen.height-h)/2;
			var settings ='height='+h+',';
			settings +='width='+w+',';
			settings +='top='+wint+',';
			settings +='left='+winl+',';
			settings +='scrollbars='+scroll+',';
			settings +='resizable=no';
			win=window.open(sURL,sName,settings);
			if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
		}