function Obrazek(url, zamknij, title)
		{
		
			{
				NewWindow=window.open('', '','width='+700+',height='+500+',toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no');
				NewWindow.document.open();
  
				NewWindow.document.writeln("<html>\n<head> <meta http-equiv=\"Content-type\" content=\"text/html; charset=iso-8859-2\"><title>"+title+"</title>\n</head>");
				NewWindow.document.writeln("<body style=\"font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#FFFFFF\">");
				NewWindow.document.writeln("<table width=100% height=100% style=\"font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#FFFFFF\">");
				NewWindow.document.writeln("<tr><td valign=center align=center>\n<a href=\"javascript:window.close();\"><img src=\""+url+"\" border=0></a></td></tr>");
				NewWindow.document.writeln("<tr><td align=center style=\"font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#FFFFFF\"><a href=\"javascript:window.close();\">"+zamknij+"</a>\n</td></tr>");
				NewWindow.document.writeln("</table>");
				NewWindow.document.writeln("</body>\n</HTML>\n");
				NewWindow.document.close(); 
				NewWindow.focus(); 		
			} 
			return;
		}				

