
function aktualizuj_wczytaj_komorki(id_jednostki)
{
var xmlhttp;
xmlhttp=create_xmlhttp();
  
xmlhttp.open("GET","php/aktualizuj_wczytaj_komorki.php?id_jednostki="+id_jednostki+"&sid="+Math.random(),true);
xmlhttp.send(null);

 
  
xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readyState==4)
  {
  
	
	
  document.getElementById("aktualizuj_komorki").innerHTML=xmlhttp.responseText;
  
  }
}

}


function create_xmlhttp()
{
var xmlhttp;
if (window.XMLHttpRequest)
  {
  // code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  return xmlhttp;
  }
else if (window.ActiveXObject)
  {
  // code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  return xmlhttp;
  }
else
  {
  alert("Your browser does not support XMLHTTP!");
  }
  


}