// JavaScript Document
	function PopupPic(sPicURL, picwidth, picheight) {
		if(!picwidth) { var picwidth = "200"; }
		if(!picheight) { var picheight = "200"; }
	 window.open( "bigpic.php?"+sPicURL, "info",  
	 "status=0,resizable,location=0,width="+picwidth+",height="+picheight+"");
	}
