
function call_clientlist()
{ 
  getXMLHttpRequest()
  var postURL = "getclientlist.php";
  postURL =postURL+"?action=getcontent";
  postURL=postURL+"&sid="+Math.random()

   xmlhttp.onreadystatechange=updateCallContactDiv 
   xmlhttp.open("GET",postURL,true)
   xmlhttp.send(null)

}


function updateCallContactDiv() 
{
	
  if (xmlhttp.readyState==4)
   {
	   
	   
  	var x = xmlhttp.responseText
	
 	document.getElementById('Curls').innerHTML = x;
	showproject();
	call_rss();


   }
  else{
  	document.getElementById('Curls').innerHTML="Loading..."
  }
}
