/**
 *
 *
 */
function reloadDateList( place_id ) {

	// 読込むページ
	var url = "/taikan/getDateList.php?ForumPlaceID=" + place_id;

	params = "";

	// 書き換え実行
	new Ajax.Updater(
		
		{ success : "reload_area" },
		url,
		{
			asynchronous   : true,
			method   : "get",
			requestHeaders : ["Content-Type", "application/x-www-form-urlencoded; charset=utf-8"],
			postBody       : params,
			onLoading : nowLoding,
			onFailure : alertMessages
		}
	);
}
/**
 *
 *
 */
function reloadSponsorDateList( onload_id ) {

	var select_obj = document.getElementById("select_prefectures_code");

	var prefectures_code = select_obj.value;

	if ( onload_id != "" && prefectures_code == "" ) prefectures_code = onload_id;

	// 読込むページ
	var url = "/taikan/getSponsorDateList.php?PrefecturesCode=" + prefectures_code;

	params = "";

	// 書き換え実行
	new Ajax.Updater(
		
		{ success : "reload_area" },
		url,
		{
			asynchronous   : true,
			method   : "get",
			requestHeaders : ["Content-Type", "application/x-www-form-urlencoded; charset=utf-8"],
			postBody       : params,
			onLoading : nowLoding,
			onFailure : alertMessages
		}
	);
}
/**
 *
 *
 */
function reloadLinkList( forum_schedule_id ) {

	// 読込むページ
	var url = "/taikan/getScheduleList.php?ForumScheduleID=" + forum_schedule_id;

	params = "";

	// 書き換え実行
	new Ajax.Updater(
		
		{ success : "reload_area" },
		url,
		{
			asynchronous   : true,
			method   : "get",
			requestHeaders : ["Content-Type", "application/x-www-form-urlencoded; charset=utf-8"],
			postBody       : params,
			onLoading : nowLoding,
			onFailure : alertMessages
		}
	);
}
/**
 *
 *
 */
function nowLoding() {

}
/**
 *
 *
 */
function alertMessages() {

	alert("失敗しました");

	return false;
}
