<!--
function pop1(name1,w1,h1,kom1)
{
		w1=w1+10;
		h1=h1+20;
		okno = null;
		if(window.screen)
					{ aw = screen.availWidth;
						ah = screen.availHeight; }
		else 	{ aw=640; ah=480; }
		dane="width="+w1+",height="+h1+",left="+(aw-w1)/2+",top="+(ah-h1)/2+",toolbar=no,location=no,directories=no,"+"status=yes,menubar=no,"+"scrollbars=yes,resizable=no";

		okno=window.open('','pop',dane);
			okno.document.write('<html><head><title>ENZBUD</title><link rel="stylesheet" type="text/css" href="s1.css" /></head>');
			okno.document.write('<body leftmargin="0" topmargin="0" bgcolor="#464646">');
			okno.document.write('<center><br><table width="100%" border="0" cellspacing="0" cellpadding="0">');
			okno.document.write('<tr><td align="center">');
			okno.document.write('<a href="javascript:window.close()">');
			okno.document.write(kom1+'<br /></a>');
			okno.document.write('<a href="javascript:window.close()">');
			okno.document.write('<img src="'+name1+'" border="0" Alt="Zamknij" />');
			okno.document.write('</a><br />');
			okno.document.write('</table></center>');
			okno.document.write('</body></html>');
}
