<!-- 
	function t1(txt) {
		window.status = txt;
	}

	function t2() {
		window.status = '';
	}

	function EmailWnd(name,user,host)
	{
		wx = 400;
		wy = 150;
		px = (window.screen.width - wx) / 2;
		py = (window.screen.height - wy) / 2;
		newWin = window.open("", "eml", "scrollbars=no,resizable=no,status=no,toolbar=no,directories=no,menubar=no,left=" + px + ",top=" + py + ",height=" + wy + ",width=" + wx);
		s = "<html><head><title>Email information</title></head>\n";
		s += "<body bgcolor=\"#000000\" text=\"#FFFFFF\" topmargin=\"0\" leftmargin=\"0\" bottommargin=\"0\" rightmargin=\"0\"><center><br>\n";
		s += "Email information for <B>" + name + ":</b><br><br>\n";
		s += "<code><b>" + user + "(-at-)" + host + "</b></code><br><br>\n";
		s += "Please replace \"(-at-)\" with \"@\" to get real address.<br>\n";
		s += "</center></body></html>\n";
		newWin.document.write(s);
		newWin.document.close();
		newWin.focus();
	}

	function CheckPoll() {
		var pola = document.poll['Dot'];
		var ile = pola.length;
		koniec = false;
		for (i = ile; i>0; i--) {
			if (pola[i-1].checked) { koniec = true; }
		}
		return koniec;
	}

	function MyWndPic(wx,wy,title,picture)
	{
		wx = wx + 10;
		wy = wy + 10;
		px = (window.screen.width - wx) / 2;
		py = (window.screen.height - wy) / 2;	
		newWin = window.open("", "pic", "scrollbars=no,resizable=no,status=no,toolbar=no,directories=no,menubar=no,left=" + px + ",top=" + py + ",height=" + wy + ",width=" + wx);

		s = "<html><head><title>" + title + "</title></head>\n";
		s += "<body bgcolor=\"#000000\" topmargin=\"0\" leftmargin=\"0\" bottommargin=\"0\" rightmargin=\"0\">\n";
		s += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" height=\"100%\"><tr><td align=\"center\" valign=\"middle\">\n";
		s += "<a href=\"#\" onclick=\"self.close()\"><img src=\"" + picture + "\" alt=\"Click here to close window\" title=\"Click here to close window\" border=\"0\"></a>\n";
		s += "</td></tr></table>\n";
		s += "</body></html>\n";
		newWin.document.write(s);
		newWin.document.close();
		newWin.focus();
	}

	function Summary() {
		wx = 630;
		wy = 470;
		px = (window.screen.width - wx) / 2;
		py = (window.screen.height - wy) / 2;
		newWin = open("","sum","scrollbars=yes,resizable=yes,status=no,left=" + px + ",top=" + py + ",height=" + wy + ",width=" + wx);
		newWin.focus();
	}

	function Help() {
		wx = 400;
		wy = 300;
		px = (window.screen.width - wx) / 2;
		py = (window.screen.height - wy) / 2;
		newWin = open("","hlp","scrollbars=auto,resizable=no,status=no,left=" + px + ",top=" + py + ",height=" + wy + ",width=" + wx);
		newWin.focus();
	}

//-->

