function GetLatLong(location) {
	   
	   geocoder = new google.maps.Geocoder();		
	   
	   if (geocoder) {
		  geocoder.geocode( { 'address': location}, function(results, status) {
				if (status == google.maps.GeocoderStatus.OK) {			  				  				  				  				  
				  georef = results[0].geometry.location;				  
				  getElementById("_coordslat").value = georef.lat();				  
				  getElementById("_coordslng").value = georef.lng();				  				  
				}			
		  });
		}
	  
}

function GetGoogleAddr(city) {
	   
	   geocoder = new google.maps.Geocoder();		
	   
	   if (geocoder) {
		  geocoder.geocode( { 'address': city}, function(results, status) {
				if (status == google.maps.GeocoderStatus.OK) {			  				  				  				  				  
				  addr = results[0].formatted_address;	
				  getElementById("_googleaddr").value = addr;
				  getElementById("_city").value = addr;				  
				} 	
		  });
		}
	  
}
