var xmlHttp

function getTestimonials(intpage)
{
	 
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request")
		return
	} 
	
	
	var url="ajax/showTestimonials.php";
	url=url+"?psid="+Math.random();
	url=url+"&pid="+intpage;
	url=url+"&tmstmp="+new Date().getTime();	 
	xmlHttp.onreadystatechange=stateChanged 
	xmlHttp.open("GET",url,true)
	xmlHttp.send(null)
	 
} 

function stateChanged() 
{ 
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
	{ 
		document.getElementById("div_testimonials").innerHTML=xmlHttp.responseText 
	} 
} 

