function zeige_image(img, breite, hoehe)
{
if (navigator.appName != "Microsoft Internet Explorer")
   win = window.open("","Bild_anzeigen","innerwidth=" + breite + ",innerheight=" + hoehe);
else
   win = window.open("","Bild_anzeigen","scrollbars=no, resizable=no, location=no, width=" + breite + ",height=" + hoehe);

win.document.writeln("<html>");
win.document.writeln("<head>");
win.document.writeln("<meta http-equiv='Content-Type' content='text/html' charset='windows-1252'>");
//win.document.writeln("<link rel='stylesheet' type='text/css' href='../muehlenverein/muehlenverein.css'>");
win.document.writeln("</head>");
win.document.writeln("<title>");
win.document.writeln("Fotos aus der Braaker Mühle");
win.document.writeln("</title>");
win.document.writeln("<body><p align=center>");
win.document.writeln("<img border='0' src='" + img + "'><br><br>");
win.document.writeln("<font face='Tahoma'><a href='#' onclick=window.close()>Schliessen</a></font>");
win.document.writeln("</p>");
win.document.writeln("</body>");
win.document.writeln("</html>");
win.document.close();
}


function oeffneSpargelFenster(fenster, breite, hoehe)
{
if (navigator.appName != "Microsoft Internet Explorer")
   win = window.open(fenster,"Bild_anzeigen","innerwidth=" + breite + ",innerheight=" + hoehe);
else
   win = window.open(fenster,"Bild_anzeigen","scrollbars=yes,resizable=no,location=no,width=" + breite + ",height=" + hoehe);

}

function oeffne_fenster(fenster)
{
if (navigator.appName != "Microsoft Internet Explorer")
   win = window.open(fenster,"Bild_anzeigen","innerwidth=" + 400 + ",innerheight=" + 450);
else
   win = window.open(fenster,"Bild_anzeigen","scrollbars=no, resizable=no, location=no, width=" + 400 + ",height=" + 450);

}