<!--

function Okno(url,w,h,tytul) 
{
  a = 
"titlebar=0,toolbar=0,resizable=0,scrollbars=0,status=0,menubar=0,width="+w+",height="+h+",left=100,top=100";
  imgwin = window.open('','',a);
  imgwin.document.write('<html><body style="margin:0px;padding:0px;"><title>"'+tytul+'"</title>');
  imgwin.document.write('<a href="Javascript:close();"><img border="0" src="'+url+'"></a></body></html>');
}

//-->
