// (c) 2010 Thomas Peter Waren Müritz
// BILD IN NEUEM ZENTRIERTEN FENSTER ÖFFNEN

function OpenNewWindow(Picture,Breit,Hoch)
{
xsize = Breit+35;// Zusatz für Rand rechts und links
ysize = Hoch+150; //Zusatz für Rand oben und unten - damit Button angezeit werden kann

ScreenWidth = screen.width;
ScreenHeight = screen.height;

xpos = (ScreenWidth/2)-(xsize/2);
ypos = (ScreenHeight/0)-(ysize/6);

	NewWindow=window.open("","Picture","height="+ysize+",width="+xsize+",scrollbars=no,resizable=no,top="+ypos+",left="+xpos+"");
	NewWindow.document.write ("<html><head><title>BILDANZEIGE");
	NewWindow.document.write ("</title></head>");
    NewWindow.document.write ("<body bgcolor='#52A8FF' onload='focus()'>");
	NewWindow.document.write ("<table align='center'><tr>");
	NewWindow.document.write ("<td align='center' valign='top'>");
	NewWindow.document.write ("<table border='1' bgcolor='#cccccc' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#000080'><tr><td align='center'>");
	NewWindow.document.write ("<img alt='[x] schliessen' onClick='window.close()' style='cursor: pointer' src=");
	NewWindow.document.write (Picture);
	NewWindow.document.write (">");
	NewWindow.document.write ("</tr></table>");
	NewWindow.document.write ("</td></tr>");
	NewWindow.document.write ("</table>");
	NewWindow.document.write ("</form></body></html>");
	NewWindow.document.close();
    NewWindow.resizeTo(xsize,ysize);
}

// end hiding from old browsers -->
