<!--
function NewWnd(pic,w,h)
{
nowe=window.open('','',' width='+w+', height='+h+', top=20, left=80');
nowe.focus();
nowe.document.open();
nowe.document.writeln('<html><head>');
nowe.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
nowe.document.writeln('</head>');
nowe.document.writeln('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onBlur="self.close()">');
nowe.document.writeln('<center><img border="0" src="'+pic+'" HEIGHT="'+h+'" WIDTH="'+w+'" alt="ZAMKNIJ!" onClick="window.close();"></center>');
nowe.document.writeln('</body></html>');
nowe.document.close();
}
//-->
