﻿
//----------------
// 非同期通信
//----------------

$(function() {
	var url   = "./script/send.php";

	// POST送信
	$("#sbmt").click(function() {
		$.post(
			url,
			{
			email: $("#email").val(),
			hotel:$("#hotel").val(),
			mode:$("#mode").val()
			},
			mailResult);
	});
});


// コールバック関数
function mailResult(data, success){
	document.mobileMailFm.email.value = '';
	document.getElementById("send_result").innerHTML = data;
}

