// JavaScript Document

function show(pic, breite, hoehe){
	
	fensteroptionen = "toolbar=no,scrollbars=no,menubar=no,statusbar=no";
	fenster = window.open("", "", fensteroptionen + ',width=' + breite + ',height=' + hoehe);
	fenster.focus(); //nach vorne
	fenster.document.open(); //neues Dokument
	
	var pos_x = 0;
	var pos_y = 0;
	
	fenster.moveTo(pos_x,pos_y);
	
		with(fenster){
			document.write("<html><head>");		
			document.write("<title>bild_popup</title>");
			document.write("</head>");
			document.write("<body topmargin=\"0\" leftmargin=\"0\">");
			document.write("<table width=\"100%\"><tr><td align=\"center\">");
			document.write("<a href=\"JavaScript:window.close();\">");
			document.write("<img src=\"" + pic + "\"></a>");
			document.write("</td></tr></table></body></html>");
		}
//	Fenster.blur(); //nach hinten
}

