
function arata_categorie(section_id, limit)
{

if (section_id=='')
{
document.getElementById("table_info").innerHTML=""
return
}

xmlHttp=GetXmlHttpObject()

if (xmlHttp==null)
{
alert ("Browser does not support HTTP Request")
return
}

var url="sections/arata_detalii_categorie.php"
url=url+"?section_id="+section_id+"&limit="+limit

//alert(url);


xmlHttp.onreadystatechange=stateChanged
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}

function stateChanged()
{

if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{

document.getElementById("table_info").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
}