
function wczytaj_pracownicy(id_komorki)
{
var xmlhttp;
xmlhttp=create_xmlhttp();
  
xmlhttp.open("GET","php/wczytaj_pracownicy.php?id_komorki="+id_komorki+"&sid="+Math.random(),true);
xmlhttp.send(null);

 
  
xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readyState==4)
  {
  if (id_komorki==0)
	{
	document.getElementById("pracownicy").innerHTML="";
	}
  document.getElementById("pracownicy").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!");
  }
  


}