function win(Picture,Breit,Hoch)
{
xsize = Breit+14;
ysize = Hoch+70;
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 ("<html><head><title>Software Artikel Abbildung  -  Software Artikel Abbildung  -  Software Artikel Abbildung  -  Software Artikel Abbildung  -  ");
	NewWindow.document.write ("</title><script language='JavaScript'> function DoneWindow() {window.close(self);return true;}</script></head>");
    NewWindow.document.write ("<body bgcolor='#ffffff' leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 onload='focus()'>");
	NewWindow.document.write ("<table border='0' bgcolor='#ffffff' cellpadding='0' cellspacing='0' align='center' height='100%'><tr height='90%'><td>");
	NewWindow.document.write ("<a href='javascript:DoneWindow();'><img border='0' src=");
	NewWindow.document.write (Picture);
	NewWindow.document.write ("></a>");
	NewWindow.document.write ("</td></tr><tr height='10%'><td>");
	NewWindow.document.write ("<div align='center' valign='bottom'><form><input type='button' value='Fenster schließen' style='font-family: Verdana; font-size: 10px' onClick='self.close()'>");
	NewWindow.document.write ("</form></div></table></body></html>");
	NewWindow.document.close();
    NewWindow.resizeTo(xsize,ysize); 
}
 