function geoTest() {

	if (google.loader.ClientLocation) {

		var latitude = google.loader.ClientLocation.latitude;
		var longitude = google.loader.ClientLocation.longitude;
		var city = google.loader.ClientLocation.address.city;
		var country = google.loader.ClientLocation.address.country;
		var country_code = google.loader.ClientLocation.address.country_code;
		var region = google.loader.ClientLocation.address.region;

		var text = 'Your Location<br /><br />Latitude: ' + latitude + '<br />Longitude: ' + longitude + '<br />City: ' + city + '<br />Country: ' + country + '<br />Country Code: ' + country_code + '<br />Region: ' + region;

	} else {

		var text = 'Google was not able to detect your location';

	}

	//document.write(text);
	if (latitude<38){
		toggleBox("SonomaAddress",1);
		document.getElementById("phone").innerText = "(707) 921-1859"; // for IE
		document.getElementById("phone").textContent = "(707) 921-1859"; // for the rest of the known world
		
	}
	else{
		toggleBox("Address",1);

	}
}

geoTest();
