google.load("maps", "2",{"other_params":"sensor=true"});
function initialize() {
	var address = '東京都中野区本町2-2-11';
	var map = new google.maps.Map2(document.getElementById("map"));
	new GClientGeocoder().getLatLng(
		address,
		function(point){
			if (!point) {
				alert(GetAddress + " not found");
			}
			else {
				map.setCenter(point, 14);
				var marker = new GMarker(point);
				map.addOverlay(marker);
			}
		}
	);
}
google.setOnLoadCallback(initialize);