
function displayPhoto(url, szerokosc, wysokosc, tekst) 
{
	szerokosc+=30;
	wysokosc+=30;
	okno = open('',"displayPhoto",'width='+szerokosc+', height='+wysokosc+', menubar=no, resizable=no, scrollbars=no');
	okno.document.open();
	okno.document.writeln("<HTML><HEAD><TITLE>Zakład Betoniarski BALUSTRAL</TITLE>");
	okno.document.writeln("<style type=\"text/css\">");
	okno.document.writeln("td {font-family: Arial; font-size: 14px; color: #F5F5F5;}");
	okno.document.writeln("</style>");
	okno.document.writeln("</HEAD>");
	okno.document.writeln("<BODY leftmargin=\"0\" rightmargin=\"0\" topmargin=\"0\" bottommargin=\"0\">");
	okno.document.writeln("<table width=\"100%\" height=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"height: 100%;\" bgcolor=\"#1A367C\"><tr><td align=\"center\" valign=\"middle\">");
	okno.document.writeln("<A Href=\"javascript:window.close()\"><IMG SRC=\"" + url +"\" Border=\"0\" alt=\"zamknij to okno\" style=\"border: 1px solid #FFFFFF;\"></A>");
	if(typeof tekst!='undefined')
		okno.document.writeln("<br><br>"+tekst);		
	okno.document.writeln("</td></tr></table>");	
	okno.document.writeln("</BODY></HTML>");
	okno.document.close();
}
