<!--- Hide script from old browsers

function OpenNewWindow(Picture,Breit,Hoch)

{
xsize = Breit+30;// Zusatz für Rand rechts und links
ysize = Hoch+60; //Zusatz für Rand oben und unten - damit Button angezeit werden kann

ScreenWidth = screen.width;
ScreenHeight = screen.height;

xpos = (160);
ypos = (170);
   NewWindow=window.open("","Picture","height="+ysize+",width="+xsize+",scrollbars=no,resizable=no,top="+ypos+",left="+xpos+"");
   NewWindow.document.write ("<html><head><title>Dorer Fasnatbüttel");
   NewWindow.document.write ("</title></head>");
   NewWindow.document.write ("<body background='../Images/hg-fs.gif' onLoad='if(window.focus) window.focus()'>");
   NewWindow.document.write ("<table align='center'><tr>");
   NewWindow.document.write ("<td align='center' valign='top'>");
   NewWindow.document.write ("<table border='1' bordercolor='#000000' bgcolor='#EFEFEF' cellpadding='0' cellspacing='0'><tr><td align='center'>");
   NewWindow.document.write ("<img src=");
   NewWindow.document.write (Picture);
   NewWindow.document.write (">");
   NewWindow.document.write ("</tr></table>");
   NewWindow.document.write ("</td></tr><tr>");
   NewWindow.document.write ("<td align='center' valign='bottom'>");
   NewWindow.document.write ("<center><form><input type='button' value='Fenster schliessen' style='font-family: Verdana; font-size: 11px' onClick='self.close()'>");
   NewWindow.document.write ("</td></tr></table>");
   NewWindow.document.write ("</form></body></html>");
   NewWindow.document.close();
}
// end hiding from old browsers -->
