
  function oeffne_Fensterbild(bildname,b_width,b_height,f_width,f_height){
   doc=window.open("", "fenster", "width="+f_width+",height="+f_height+",menubar=0, status=0,scrollbars=0");
   doc.document.open("text/html");
   doc.document.write('<html><title>Bild</title><body bgcolor=#000000>');
   doc.document.write('<p align=center><img src="'+bildname+'" width="'+b_width+'" height="'+b_height+'">');
   doc.document.write('</p></body></html>');
   doc.document.close();
   doc.focus()
  }

