function OpenNewWindow(Picture,Breit,Hoch,Comment)
{
xsize = Breit+100;
ysize = Hoch+150;

ScreenWidth = screen.width;
ScreenHeight = screen.height;

xpos = (ScreenWidth/2)-(xsize/2);
ypos = (ScreenHeight/2)-(ysize/2);

	NewWindow=window.open("","Picture","height="+ysize+",width="+xsize+",scrollbars=yes,resizable=no,top="+ypos+",left="+xpos+"");
NewWindow.document.write ("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>");
	NewWindow.document.write ("<html><head><meta http-equiv='content-type' content='text/html; charset=ISO-8859-1'><title>BILDANZEIGER</title>");
        NewWindow.document.write ("<style type='text/css'>body {background:#ccc; font-family: Helvetica,Arial,sans-serif; font-size: 12px; text-align:center;}");
        NewWindow.document.write ("a{color:#000; text-decoration:underline; font-weight:bold;} a:hover{color:#555; text-decoration:none;}");
        NewWindow.document.write ("img{border:2px solid blacK;}</style>");
        NewWindow.document.write ("<body onload='focus()'>");
	NewWindow.document.write ("<img src='");
	NewWindow.document.write (Picture);
	NewWindow.document.write ("'><p>");
         if (Comment!='') {NewWindow.document.write (Comment+"<br><br>");}
	NewWindow.document.write ("<a href='javascript:window.close()'>Fenster schlie&szlig;en</a></p>");
	NewWindow.document.write ("</body></html>");
	NewWindow.document.close();
        NewWindow.resizeTo(xsize,ysize);
}