NewWindow="";
function OpenNewWindow(Picture,Breit,Hoch)
{
xsize = Breit; // Zusatz für Rand rechts und links
ysize = Hoch; //Zusatz für Rand oben und unten - damit Button angezeigt werden kann

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

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

if (!NewWindow.closed && NewWindow.location) {NewWindow.close();}

html = ('<html><head><title>.:: Hans Kaufeld ::.</title><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"><style type="text/css">html, body, p, a:link, a:visited {margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; padding:0px; font-family:Tahoma, sans-serif, Arial, Verdana;font-size:12px; color:#ffffff; text-align:right;}</style></head><body onload="focus()" bgcolor="#000000"><div align="left"><img src="'+Picture+'"></div></body></html>');

NewWindow=window.open("","Picture","height="+ysize+",width="+xsize+",scrollbars=no,resizable=yes,top="+ypos+",left="+xpos+"");
NewWindow.document.write(html);
NewWindow.document.close();
}