okno="";
function zoom(nazwa,x,y) 
{
	opcje="toolbar=0,location=0,direction=0,status=0,menubar=0,scrollbars=0,width=" + x +",height=" + y ;
	if (okno.closed == false)
	{
		okno.close(); okno=window.open('','okno',opcje);
	} 
	else
	{
		okno=window.open('','okno',opcje);
	}
	okno.focus();
	okno.document.write ('<html>');
	okno.document.write ('<head>');
	okno.document.write ('<title>DPS Kluzeka .galeria</title>');
	okno.document.write ('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
	okno.document.write ('</head>');
	okno.document.write ('<style>');
	okno.document.write ('img  {border:solid 1 #FFFFFF}' );
	okno.document.write ('</style>');
	okno.document.write ('')
	okno.document.write ('<body bgcolor="#118bce" bottommargin="0" topmargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0">');
	okno.document.write ('<table cellpadding="0" cellspacing="0" align="center" height="100%">');
	okno.document.write ('<tr><td>');
	okno.document.write ('<a href="javascript:window.close()"><img src="' + nazwa+'" border="1" name="zdj" id="zdj"></a>');
	okno.document.write ('</td></tr>');			
	okno.document.write ('</table>');
	okno.document.write ('</body>');
	okno.document.write ('</html>');
}