function pic (obraz)
{ 
if(navigator.appName=="Netscape")
	 {
		var temp = open ('', 'okno', 'width=200,height=50,top=0,left=0, resizable=no, scrollbars=0');
		//setTimeout('check_loadfinish(' + obraz + ')', 2500);
	display = open ('', 'okno', 'resizable=yes,statusbar=yes,menu=yes,width=200,height=50,top=0,left=0');
	display.focus();
	display.document.open();
	display.document.write("<html>");
	display.document.write("<head>");
	display.document.write("<title>PH Szczecin II</title>");
	display.document.write("<script language='JavaScript'>");
	display.document.write("function resize()");
	display.document.write("{ if (document.images['obraz'].complete == true)");
	display.document.write("   { resizeTo(document.images['obraz'].width , document.images['obraz'].height );	 }");
	 }
	else
	 {
	display = open ('', 'okno', 'resizable=yes,statusbar=yes,width=200,height=50,top=0,left=0');
	display.focus();
	display.document.open();
	display.document.write("<html>");
	display.document.write("<head>");
	display.document.write("<title>(c) PH Szczecin II</title>");
	display.document.write("<script language='JavaScript'>");
	display.document.write("function resize()");
	display.document.write("{ if (document.images['obraz'].complete == true)");
	display.document.write("   { resizeTo(document.images['obraz'].width + 10, document.images['obraz'].height + 30 );	 }");	 }
		display.document.write("  else	 ");
	display.document.write("   { setTimeout('resize()', 500);");
	display.document.write("} }</script> ");
	display.document.write("</head><body onload=\"resize()\" bottommargin=1 leftmargin=1 marginheight=0 marginwidth=0 rightmargin=1 topmargin=1 bgcolor= #FFFFFF background=pics/loading.gif>");
	display.document.write('<a href="javascript:self.close()"><img name="obraz" src="'+ (obraz) +'" BORDER=0 alt="Zamkniêcie okna"></a>');
	display.document.write("</body></html>");
	display.document.close();
	
}