<!--

	function imageWindow(fileName, w, h) 
	{
		var left = Math.round((screen.width/2) - (w/2));
		var top = Math.round((screen.height/2) - (h/2));
		window.open("/qg/qg_view.php?photoURL="+escape(fileName), "picWindow", "width="+w+",height="+h+",top="+top+",left="+left+",location=no,menu=no,status=yes,resizable=yes");
	}

// -->