
/*-------------------------------------------------SEARCH FUNCTIONS------------------------------------------*/

function formLocation() {
	var el=document.getElementById("form_location_one");
	var string = el.value;
	var query_string = "&string=" + string;
	document.onclick = clearSearchResults;
	
	ajaxFunction(query_string,'location_results','searchengine/form_location_one.php', 0);
}


function clearSearchResults() {
	document.getElementById("location_results").innerHTML = '';
	var form_location = document.getElementById("form_location_one");
	form_location.value = '';
	//form_location.focus();
}




/*--------------------------------------------------END OF SEARCH FUNCTIONS ----------------------------------------*/