// kontrola formuláøù
var http = false;

if(navigator.appName == "Microsoft Internet Explorer") {
  http = new ActiveXObject("Microsoft.XMLHTTP");
} else {
  http = new XMLHttpRequest();
}

function Kalendar(prm, chm, datum) {
  http.abort();
  http.open("GET", "/scripts/active_save.php?druh=kalendar&prm=" + prm +"&chm=" + chm + "&datum_info=" + datum, true);
  http.onreadystatechange=function() {
   if(http.readyState == 4) {
      if(http.responseText) { document.getElementById("kalendar").innerHTML = http.responseText; }
    }
  }
  http.send(null);
}

function Detail(id) {
  http.abort();
  http.open("GET", "/scripts/active_save.php?druh=detail&id=" + id, true);
  http.onreadystatechange=function() {
   if(http.readyState == 4) {
      if(http.responseText) { 
			document.getElementById("detail" + id).innerHTML = http.responseText; 
			document.getElementById("detail" + id).style.display='block';
		}
    }
  }
  http.send(null);
}


	

