<!--
function winopen(image,w,h) {
	var wf = "";
	wf = wf + "width=" + w;
	wf = wf + ",height=" + h;
	wf = wf + ",resizable=" + "no";
	wf = wf + ",scrollbars=" + "no";
	wf = wf + ",menubar=" + "no";
	wf = wf + ",toolbar=" + "no";
	wf = wf + ",directories=" + "no";
	wf = wf + ",location=" + "no";
	wf = wf + ",status=" + "no";
fenster = window.open("","foto",wf);
fenster.document.open();
fenster.document.writeln("<HTML><HEAD>");
fenster.document.writeln("<title>Fotoanzeige</title></HEAD>");
fenster.document.writeln('<BODY leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0" onBlur="window.close()" bgcolor="#000000">');
fenster.document.writeln("<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100% HEIGHT=100%><TR><TD ALIGN=CENTER VALIGN=MIDDLE><IMG HSPACE=0 VSPACE=0 BORDER=0 ALIGN=center SRC='" + image + "'></TD></TR></TABLE>");
fenster.document.write("</BODY></HTML>");
fenster.document.close();
fenster.window.focus();
}
//-->