function cere_sectiune(info, cale){
if (info==''){
    document.getElementById("afisare_sectiune").innerHTML=""
    return
}

xmlHttp=GetXmlHttpObject()

if (xmlHttp==null){
    alert ("Browser does not support HTTP Request")
    return
}

var url=cale+"root/sectiuni.php"
url=url+"?sectiune="+info+"&dummy=" + new Date().getTime();

xmlHttp.onreadystatechange=stateChangedTaburi1
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}

function stateChangedTaburi1(){
  if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){
     xmlHttp.CacheControl = "no-cache";
     xmlHttp.AddHeader("Pragma", "no-cache");
     xmlHttp.Expires = -1;
     document.getElementById("sectiuni_tab").innerHTML=xmlHttp.responseText
  }
}

function GetXmlHttpObject(){
  var objXMLHttp=null

  if (window.XMLHttpRequest){
    objXMLHttp=new XMLHttpRequest()
  }
  else if (window.ActiveXObject){
    objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
  }
return objXMLHttp
}


