google.load("maps", "2", {"language" : "ja_JP"});

function getLocation() {
	// Google API の利用
	var cl = google.loader.ClientLocation;
	var message = "";
	if(cl !== null){
		var Pref = cl.address.region;
		var City = cl.address.city;

		if(Pref.match(/大阪府/)) {
			location.href = "index_kansai.php";
		}
		else if(Pref.match(/京都府/)) {
			location.href = "index_kansai.php";
		}
		else if(Pref.match(/奈良県/)) {
			location.href = "index_kansai.php";
		}
		else if(City.match(/神戸/)) {
			location.href = "index_kansai.php";
		}
		else if(City.match(/札幌/)) {
			location.href = "index_sapporo.php";
		}
		else if(City.match(/仙台/)) {
			location.href = "index_sendai.php";
		}
		else if(Pref.match(/福岡/)) {
			location.href = "index_fukuoka.php";
		}
	}		
}

google.setOnLoadCallback(getLocation);
