function refresh()
{
	var req = mint.Request();
			
	req.OnSuccess = function () { document.getElementById("odsw").innerHTML = this.responseText;}, req.OnError = function () {document.getElementById("odsw").innerHTML = "Wystąpił błąd !!! </br>" + this.responseText + "</br>" + req.xmlHttpRequest.statusText ;}
	req.Send ("czas.php");

}

function ukryj (x)
{
   _txt = document.getElementById(x);
   
   if (_txt.className=="widoczny")
   {
      _txt.className="ukryty";
   }
   else
   {
      _txt.className="widoczny";
   }
}

