// start of other javascripts
var xmlHttp;
function filter_country_testimonials(){
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null)
 	{
 		alert ("Browser does not support HTTP Request");
 		return
	 } 
	var url="asus_testimonials_filter_todb.php";
	var data="country="+document.getElementById("fliter_country").value;
	xmlHttp.onreadystatechange=stateChanged_testimonial_filter;
	xmlHttp.open("POST",url,true);
	xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xmlHttp.send(data);

}

function stateChanged_testimonial_filter(){ 
 	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){ 
		document.getElementById("testimonial_listings").innerHTML=xmlHttp.responseText;;
 	} 
} 









