function OpenNewWindow(picture, width, height) {
    xsize = width + 35; 
    ysize = height + 50;
    ScreenWidth = screen.width;
    ScreenHeight = screen.height;

    xpos = (ScreenWidth / 2) - (xsize / 2);
    ypos = (ScreenHeight / 2) - (ysize / 2);
	
	Bildpopup = window.open("","picture","height=" + ysize + ",width=" + xsize + ",scrollbars=no,resizeable=no,toolbar=no,menubar=no,location=no,top=" + ypos + ",left=" + xpos);
	Bildpopup.document.write("<html><head><title>Zürichsee Online - Bezirkskarte</title></head>");
    Bildpopup.document.write("<body bgcolor='#ffffff' onload='focus();'>");
	Bildpopup.document.write("<table align='center' border='0'><tr>");
	Bildpopup.document.write("<td align='center' valign='top'>");
    Bildpopup.document.write("<img src='" + picture + "' border='1'>");
    Bildpopup.document.write("</td></tr><tr><td align='center' valign='top'><a style='font-family: Arial; color: #000000; font-size: 10px' href='#' onClick='window.close()'>Fenster schliessen</a></td></tr></table>");
	Bildpopup.document.write("</body></html>");
	Bildpopup.document.close();
}