var xmlHttpcount
function setcount_priority(val)
{ 
xmlHttpcount=GetXmlHttpObj();
if (xmlHttpcount==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url="/tamilnadu/ContentCount";
url=url+"?cntid="+val;
xmlHttpcount.onreadystatechange=stateChang;
xmlHttpcount.open("GET",url,true);
xmlHttpcount.send(null);
}

function stateChang() 
{
	
//document.getElementById("loader").style.display = "block";
if (xmlHttpcount.readyState==4)
{ 
var fff=0;
//document.getElementById("txtHint").innerHTML=xmlHttpcount.responseText;
//document.getElementById("loader").style.display = "none";
}
}

function GetXmlHttpObj()
{
var xmlHttpcount=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttpcount=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
	 xmlHttpcount=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttpcount=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttpcount;
}
