

function OpenNewWindow(Picture,Breit,Hoch)
{

xsize = Breit;
ysize = Hoch;


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=no,resizable=no,top="+ypos+",left="+xpos+"");
	NewWindow.document.write ("<body style='padding:0px; margin:0px;'><a href='javascript:window.close()'>");
	NewWindow.document.write ("<img style='border:0px;' src=");
	NewWindow.document.write (Picture);
	NewWindow.document.write (" alt='Fenster schließen' /></a></body>");

	NewWindow.document.close();
                     NewWindow.resizeTo(xsize,ysize);
}