function op(s, w, h)
{
	if (w > 830) {
		wr = 830;
		hr = 600;
		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>Park Golf</title></head><body style="margin: 20px; text-align:justify" bgcolor=#e1eeb8>');
	si.document.writeln(''+s+'<br><br><a href="#" onClick="window.close();" title="Zavøít okno">zavøít okno</A></body></html>');
	si.window.status="Park Golf";
}

