function GetArea(success_function) {
	var url = "";
	if(typeof(window.rootDir) != "undefined") {
		url = window.rootDir + "/";
	}
	$.ajax({
		async : false,
		type : "POST",
		url : url + "client.php",
		data : "action=ajax_get_area",
		success : success_function
	});
}
function GetIndexArea(success_function) {
	var url = "";
	if(typeof(window.rootDir) != "undefined") {
		url = window.rootDir + "/";
	}
	$.ajax({
		async : false,
		type : "POST",
		url : url + "client.php",
		data : "action=ajax_get_index_area",
		success : success_function
	});
}

