function owindow(sczdj,tresc){
	var txt = "";
	txt += "<html><head>";
	txt += "<style><!--";
	txt += "body{font-family: Tahoma; font-size: 12px;}";
	txt += "//--></style>";
	txt += "</head><body>";
	txt += "<table align=\"center\">";
	txt += "<tr><td align=\"center\" valign=\"top\">";
	txt += "<img border=\"0\" height=\"400\" src=\"" + sczdj + "\">";
	txt += "<tr><td align=\"center\" valign=\"top\">";
	txt += "<p>" + tresc + "</p>";
	txt += "</table>";
	txt += "</body></html>";

	var opcje = "";
	opcje = "location=no,width=500,height=500";

	bl = "about:blank";
	nwo = open(bl,"okno", opcje);

	nwo.document.open();
	nwo.document.write(txt);	
	}

var liczbox = 0;
function ujawnijBox(){
	if(liczbox == 0)document.getElementById('box').style.display = 'block';
	//document.getElementById('box').innerHTML = 'zuo';
	}
function ukryjBox(){
	document.getElementById('box').style.display = 'none';
	liczbox = 1;
	}