<!--
function okno(obr,cil,w,h)
{ 
	no = window.open("","obrazek" + cil,"toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,scrollbars=no,width=" + w + ",height=" + h + ",left=10,top=20");
	with (no.document)
	{
		open();
		writeln('<html><title>NÁHLED</title><body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
		writeln('<img src="foto/big/' + obr + '" border="0" alt="" width="' + w + '" height="' + h + '" onclick="self.close();" style="cursor: hand;">');
		writeln('</body></html>');
		close();
		focus();
	}
	return false;
}
// -->