	<!--
		function wopen(f,n){
			w=window.open("","photo_w","WIDTH=300,HEIGHT=250,SCROLLBARS=0,RESIZABLE=0,TOOLBAR=0,MENUBAR=0,LOCATION=0,DIRECTORIES=0,STATUS=0");

			// w.moveTo(30,10);

			w.focus();

			w.document.write("<HTML>\n");
			w.document.write("<HEAD>\n");
			w.document.write("<TITLE>"+n+"</TITLE>\n");
			w.document.write("</HEAD>\n");
			w.document.write("<BODY BGCOLOR='#ffffff' TEXT='#0f5c99'>\n");
			w.document.write("<CENTER>\n");
			w.document.write("<IMG SRC=../photo/"+f+"><BR>\n");
			w.document.write("<FONT SIZE=2>"+n+"</FONT>\n");
			w.document.write("</CENTER>\n");
			w.document.write("</BODY>\n");
			w.document.write("</HTML>\n");
			w.document.close();
		}
	// -->

