	<!--
	var win=null;
	function NewWindow(mypage,myname,w,h,scroll,pos) {
		settings='width='+w+',height='+h+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no,maximize=no';
		msg=window.open(mypage,myname,settings);		
		msg.document.write("<html><head><title>Pictureviewer</title>");
		msg.document.write("<script language='javascript'>");
		msg.document.write("window.moveTo((screen.width-"+w+")/2,(screen.height-"+h+")/2)");
		msg.document.write("</script></head>");
		msg.document.write("<body bgcolor='#FFFFFF' leftmargin='0' marginheight='0' marginwidth='0' topmargin='0'>");
		msg.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'>");
		msg.document.write("<tr>");
		msg.document.write("<td align='center' valign='middle'>");
		msg.document.write("<center><a href='javascript:window.close()'><img src='");
		msg.document.write(mypage);
		msg.document.write("' border=0></a></center>");
		msg.document.write("</td>");
		msg.document.write("</tr>");
		msg.document.write("</table>");
		msg.document.write("</body></html>");				
		if(msg.focus) {
			msg.focus();
		}		
	}
	// -->