<!--

nn4=(document.layers) ? true : false;
ie4=(document.all) ? true : false;

obrazek=null;

function okno(nazwa,tytul,szer,wys)
{
	if (obrazek)
		{
			if (ie4) obrazek.close();
			else if (nn4) obrazek=null;
			obrazek=null
		};

	rozdz=new Image();
	rozdz.src=nazwa;
	
	obrazek=window.open('','','width='+szer+',left=5,top=5,height='+wys);
	obrazek.document.write('<html><head><title>'+tytul+'</title></head>');
	obrazek.document.write('<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">');
	obrazek.document.write('<img src="'+nazwa+'" border="0">');
	obrazek.document.write('</body>');
	obrazek.focus()
}

//-->