
function show(wx,wy,bild) {
	angaben = "width="+wx+",height="+wy+",left=0,top=0,resizable=yes";
	extern = window.open("","externalwindow",angaben);
	extern.focus();
	with(extern) {
	document.open();
	document.write("<html><head><title>external</title></head>");
	document.write("<body onblur=\"window.close();\" bgcolor=\"#f1f1f1\" leftmargin=0 topmargin=0>");
	document.write("<table width=\"100%\" height=\"98%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">");
	document.write("<tr><td align=\"center\" valign=\"middle\">");
	document.write("<img src=\"" + bild + "\" border=\"0\" alt=\"\">");
	document.write("</td></tr>");
	document.write("</table>");
	document.write("</body></html>");
	document.close();
	}
	extern.focus();
}

