function BildFenster03A(bildurl,bb,bh)
{
var eigenschaften,sbreite,shoehe,fenster;
x = 50;
y = 50;
wb = 650;
wh = 490;
eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+wb+",height="+wh+",menubar=no,toolbar=no,scrollbars=yes,resizable=yes,statusbar=0";

fenster=window.open("","",eigenschaften);
fenster.focus();
fenster.document.open();
with (fenster) {
  document.write('<html><head>');
  // geändert 2004 für Mozilla
  document.write('<scr' + 'ipt type="text/javascr' + 'ipt" language="JavaScr' + 'ipt">');
  document.write("function click() { window.close(); } "); 
  document.write("document.onmousedown=click ");
  // geändert 2004 für Mozilla
  document.write('</scr' + 'ipt>');
  document.write('<title>Zum Schliesen bitte klicken</title></head>');
  document.write('<' +'body onblur="window.close();" ');
  document.write('marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
  document.write('<img src="'+ bildurl +'"border="0" width="'+bb +'" height="'+ bh +'" border="0" alt="" >');
  document.write('</body></html>');
  fenster.document.close();
}
}

