function openPicture(a, w, h)
{
	/* Disable scrollbars for small images in IE */
	var b = w ? "no" : "yes";
	var c = '<html><head><title>Foto - Gest&uuml;t am Kirschberg</title><style type="text/css">';
	c += 'html,body{background:#680001;border:0;height:100%;margin:0;padding:0;text-align:center;width:100%;}';
	if (! w) c += 'body{overflow:-moz-scrollbars-horizontal;overflow-x:scroll;}';
	c += 'img{border:14px solid #680001;border-bottom:0;}</style></head><body>';
	c += '<a href="' + a.href + '" onclick="window.close()"><img src="' + a.href + '" alt="Foto" title="Fenster schlie&szlig;en"></a>';
	c += '</body></html>';
	/* Default scrollbar size is 16px */
	if (! w) { w = 800; h += 16; }
	w += 28;
	h += 27;
	/* This specifies the inner size without the scrollbars */
	var s = window.open("", "Foto", "width=" + w + ",height=" + h + ",dependent=yes,resizable=yes,scrollbars=" + b);
	if (! s) return true;
	s.document.open("text/html", "replace");
	s.document.write(c);
	s.document.close();
	/* This recenters the image in IE */
	/* if (s.resizeBy) s.resizeBy(0, 1); */
	s.focus();
	return false;
}