function okienko(imageName,imageWidth,imageHeight,alt,bgcolor) 

{
if (bgcolor==""){bgcolor="#ffffff";
}

{	
newWindow = window.open("okienko.htm","newWindow","width="+imageWidth+",height="+imageHeight+",left="+20+",top="+20);
newWindow.document.open();
newWindow.document.write('<html><title>'+alt+'</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor='+bgcolor+' onBlur="self.close()">');  
newWindow.document.write('<table width='+imageWidth+' border="0" cellspacing="0" cellpadding="0" align="center" height='+imageHeight+' ><tr><td>');
newWindow.document.write('<img src="'+imageName+'" width='+imageWidth+' height='+imageHeight+' alt="zamknij" >'); 
newWindow.document.write('</td></tr></table></body></html>');
newWindow.document.close();
newWindow.focus();
}}