function OpenNewWindow(Bildbreite,Bildhoehe,Picture,Breit,Hoch)
{
xsize = Breit+23;
ysize = Hoch+95;
ScreenWidth = screen.width;
ScreenHeight = screen.height;
xpos = (ScreenWidth/2)-(xsize/2);
ypos = (ScreenHeight/2)-(ysize/2);
NewWindow=window.open("","Picture","height="+ysize+",width="+xsize+",top="+ypos+",left="+xpos+",fullscreen=0,scrollbars=no,resizable=no");
 NewWindow.document.write ("<html><head><title>Mathes Schweinberger");
 NewWindow.document.write ("</title><META HTTP-EQUIV='imagetoolbar' CONTENT='no'><style type='text/css'>body {background-color: #FFFFF9;}</style></head>");
 NewWindow.document.write ("<body scroll='no' onload='focus()'>");
 NewWindow.document.write ("<a href=\"#\" onclick=\"window.close(); return false\"><img src=\""+Picture+"\" alt=\"\" width=\""+Bildbreite+"\" height=\""+Bildhoehe+"\" border=\"0\"></a>");
 NewWindow.document.write ("</body></html>");
 NewWindow.resizeTo(xsize,ysize);
 NewWindow.moveTo(xpos,ypos);
 NewWindow.document.close();
}
