function otworzOkno(zdj,tresc){
	var sczdj = zdj.src;
	var txt = "";
	txt += "<html><head>";
	txt += "<style><!--";
	txt += "body{font-family: Tahoma; font-size: 12px; background: #ECCF93;}";
	txt += "//--></style>";
	txt += "</head><body>";
	txt += "<table align=\"center\">";
	txt += "<tr><td align=\"center\" valign=\"top\">";
	txt += "<img border=\"0\"height=\"600\" src=\"" + sczdj + "\">";  
	txt += "<tr><td align=\"center\" valign=\"top\">";
	txt += "<p>" + tresc + "</p>";
	txt += "</table>";
	txt += "</body></html>";

	var opcje = "";
	opcje = "location=no,width=900,height=900";

	bl = "about:blank";
	nwo = open(bl,"okno", opcje);

	nwo.document.open();
	nwo.document.write(txt);	
	}
