function showLoading() {
  $("#MyProgressBar").show();
}

function hideLoading() {
  $("#MyProgressBar").hide();
}
function locationfind(loc) {
//	$("#MyProgressBar").load("http://www.friendsforpets.co.uk/CSSFiles/screen/images/loader.gif");
	
	xmlhttp.onreadystatechange=function(){
		document.getElementById("area_summary").innerHTML=xmlhttp.responseText;
		}
	xmlhttp.open("GET","http://www.friendsforpets.co.uk/includes/area_find.php"+"?location="+loc,true);
	xmlhttp.send();
//	$("#MyProgressBar").hide();


/*showLoading();

$.ajax({
	type: "POST",
	url: "http://www.friendsforpets.co.uk/includes/area_find.php",
	data: "location="+ loc,
	success: function(html){
		$("#area_summary").after(html);
		document.getElementById('content').value='';
		document.getElementById('content').focus();
		hideLoading();
	}
}); */

}

