function getLocation(){
navigator.geolocation.getCurrentPosition(geoHandler, geoFail, {enableHighAccuracy: true});
}

function geoHandler(locationObj){
window.location.href='search.php?w3c='+locationObj.coords.latitude+','+locationObj.coords.longitude;
} 

function geoFail(locationError){
	var script = document.createElement("li");
	script.innerHTML="Error: " + locationError.message; 
	script.style.color="white"; 
	document.getElementById("error_list").appendChild(script);
}


