Fenster = null;
function NeuFenster ( imagename , hoehe , breite, farbe ) {
    if ( Fenster != null && Fenster.closed == false )  Fenster.close();
   var h = 500;
   var w = 800;
    LeftPosition = (screen.width) ? (screen.width - w)/2 : 0;
    TopPosition = (screen.height) ? (screen.height - h)/2 : 0;
    //  alert(  "l/t " +LeftPosition + "/" +TopPosition );
   settings = 'height=' + h +'px , innerHeight=' + h + 'px ,width=' + w +'px, innerWidth' + w + 'px ,top=' + TopPosition + ',left=' + LeftPosition + ',resizable=no '
Fenster = window.open ( "images/bilder/" + imagename + ".jpg",  "grossbild", "toolbar=no, status=no, " +  settings  ) ;
    //alert("" + Fenster.document);
Fenster.document.write("<html><head><title>ARCHITEKTEN REDDERSEN &amp; SCH&Uuml;LER</title><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1' /><meta name='robots' content='index, follow' /><link rel='stylesheet' type='text/css' href='sheet.css' /></head><body style='background-color: #EDEDED'><table class='aussen' align='center' cellpadding='0' cellspacing='0' border='0'><tr><td colspan='2' height='430px'><table><tr><td colspan='5' height='360px'>");
Fenster.document.write("<a href='javascript:window.close()'><img src='images/bilder/" + imagename + ".jpg' width='" + breite + "' alt='' border='0' /></a>");
Fenster.document.write("</td></tr></table><tr><td colspan='3' height='26px'><a class='a2' href='javascript:window.close()'>zur&uuml;ck</a></td></tr></table></body></html>");
}
