function bild_anzeigen(bildadresse, bildbreite, bildhoehe) {

  var fenster_breite = bildbreite + 40;
  var fenster_hoehe = bildhoehe + 95;

  bildausgabe=window.open("about:blank", "Bild_HZO", "height="+bildhoehe+", width="+bildbreite+", scrollbars=no, resizable=no, top=100,left=100");
  bildausgabe.document.write ("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01//EN'");
  bildausgabe.document.write ("'http://www.w3.org/TR/html4/strict.dtd'>");
  bildausgabe.document.write ("<html> <head> <title> Bilder Halle-Zero-One </title>");
  bildausgabe.document.write ("<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>");
  bildausgabe.document.write ("</head>");
  bildausgabe.document.write ("<body>");
  bildausgabe.document.write ("<table style='position:relative; margin-left:auto; margin-right:auto; margin-top:0px;'> <tr> <td> <img src="+bildadresse+" name='bild_gross'> </td> </tr>");
  bildausgabe.document.write ("<tr> <td style='text-align:center;'> <input type='button' value='FENSTER SCHLIESSEN' style='font-family: Verdana; font-size: 10px' onClick='self.close()'> </td> </tr> </table>");
  bildausgabe.document.write ("</body></html>");
    
  bildausgabe.document.close();
  bildausgabe.resizeTo(fenster_breite,fenster_hoehe); 
  bildausgabe.focus();
}

