function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
} 

function update_cart()
{
xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url="/ajax_functions.php";
url=url+"?action=actualization";
url=url+"&rndid="+Math.random();
xmlHttp.onreadystatechange=cart_data_changed;
xmlHttp.open("POST",url,true);
xmlHttp.send(null);
}

function cart_data_changed() 
{
if (xmlHttp.readyState==1)
{
document.getElementById("cart_content").backgroundImage="url(/img/loading.gif)";
} else if (xmlHttp.readyState==4)
{
	if(xmlHttp.status == 200)
    {
      document.getElementById("cart_content").backgroundImage="none";
    }
    else
    {
        alert("Chyba pri nacitani stanky"+ httpRequest.status +":"+ httpRequest.statusText);
    }
//
}
}
