function op(s, w, h)
{
	if (w > 1024) {
		wr = 1024;
		hr = 768;
		res = "scrollbars=yes, resizable=yes";
	}
	else {
		wr = w;
		hr = h;
		res= "scrollbars=no, resizable=no";
	}
	si = window.open("", "_blank", "toolbar=no, status=no, "+res+", top=30, left=30, width="+wr+", height="+hr+"");
	si.document.writeln('<html><head><title>Fotogalerie - '+s+'</title></head><body style="margin: 0px 0px 0px 0px;" bgcolor=#e1eeb8>');
	si.document.writeln('<a href="#" onClick="window.close();" title="Zavři okno"><img src="'+s+'" width="'+w+'" height="'+h+'" border="0" alt="Zavři okno"></A></body></html>');
	si.window.status="Golf Club Hradec Králové";
}
