function meinfenster(string, b) { 
if(win)win.document.close();
var win=window.open("","","width=400,height=400,left=500,top=300"); 

win.document.open("text/html"); 

win.document.write("<HTML><HEAD><TITLE>"+ string +"</TITLE></HEAD><body bgcolor=#F0F0F0   topmargin=0 leftmargin=0 marginheight=0 bottommargin=0 rightmargin=0>"); 

win.document.write("<CENTER>") 

win.document.write("<FONT size='+1' color=red>"); 

 

win.document.write("<P>"); 
bild="<IMG SRC=" + b +  " height=400>";



win.document.write(bild); 
win.document.write("</FONT/>"); 

win.document.write("</P>"); 

win.document.write("<P></P>"); 

win.document.write("<FORM>"); 

win.document.write("<INPUT TYPE=button NAME='t' VALUE='schliessen' onclick='self.close()'>") 

win.document.write("</FORM>"); 

win.document.write("</CENTER>"); 

win.document.write("</BODY></HTML>"); 

win.document.close(); /**/

} 

