function showAddress(address) {
	var map = null;
	var geocoder = null;
	
	if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("map_canvas"));
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		geocoder = new GClientGeocoder();
	}

	if (geocoder) {
		geocoder.getLatLng(
		address,
			function(point) {
				if (!point) {
					document.getElementById("map_canvas").style.display = "none";
				} else {
					map.setCenter(point, 11);
					var marker = new GMarker(point);
					map.addOverlay(marker);
				}
			}
		);
	}
}

function showPays(address) {
	var map = null;
	var geocoder = null;
	
	if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("map_canvas"));
		geocoder = new GClientGeocoder();
	}
	
	if (address == "England")
		address = address + ", london";

	if (geocoder) {
		geocoder.getLatLng(
		address,
			function(point) {
				if (!point) {
					document.getElementById("map_canvas").style.display = "none";
				} else {
					map.setCenter(point, 5);
					var marker = new GMarker(point);
					map.addOverlay(marker);
				}
			}
		);
	}
}

function showRegion(address) {
	var map = null;
	var geocoder = null;
	
	if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("map_canvas"));
		geocoder = new GClientGeocoder();
	}

	if (geocoder) {
		geocoder.getLatLng(
		address,
			function(point) {
				if (!point) {
					document.getElementById("map_canvas").style.display = "none";
				} else {
					map.setCenter(point, 7);
					var marker = new GMarker(point);
					map.addOverlay(marker);
				}
			}
		);
	}
}