<!--
okno="";

function zoom(nazwa,x,y,opis) {
x = x + 50;
y = y + 50;
opcje="toolbar=0,location=0,direction=0,status=0,menubar=0,scrollbars=0,left=0,top=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>'+ opis +'</title>');
okno.document.write ('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
okno.document.write ('</head>');
okno.document.write ('<body style="margin: 0pt 0pt 0pt 0pt;">');
okno.document.write ('<table border="0" width="100%" height="100%"><tr><td align="center" valign="middle"><img src="' + nazwa +'" alt="" border="0" vspace=0 name="zdj" id="zdj"></td></tr></table>');
okno.document.write ('</body></html>');


}
//-->
