//function getTestimonials()
//{
	
	//var divTest = document.getElementById("testimonials");

	var gotoURL_fulltestimonial = ("/fulltestimonial.aspx");
		
	xmlHttp_fulltestimonial = GetXmlHttpObject()
	xmlHttp_fulltestimonial.onreadystatechange=stateChanged_fulltestimonial;
	xmlHttp_fulltestimonial.open("GET",gotoURL_fulltestimonial,true);
	xmlHttp_fulltestimonial.send(null);
//}

function stateChanged_fulltestimonial()
{
	if(xmlHttp_fulltestimonial.readyState==4)
	{
		document.getElementById('testimonials').innerHTML=xmlHttp_fulltestimonial.responseText;	
	}
}

function GetXmlHttpObject_fulltestimonial()
{
	var xmlHttp_fulltestimonial=null;
	try
  	{
  		// Firefox, Opera 8.0+, Safari
  		xmlHttp_fulltestimonial=new XMLHttpRequest();
  	}
	catch (e)
  	{
  		// Internet Explorer
  		try
    		{
    			xmlHttp_fulltestimonial=new ActiveXObject("Msxml2.XMLHTTP");
    		}
  		catch (e)
    		{
    			xmlHttp_fulltestimonial=new ActiveXObject("Microsoft.XMLHTTP");
    		}
  	}
return xmlHttp_fulltestimonial;
}