/*********************************************
	
*********************************************/
var TARGET_AJAX_PATH			= "/ajax/inducement/mobile/";
/*********************************************
	
*********************************************/
function inducement(mail_account,mail_domain){

	var post_data = $('#mobile_mail').serialize();

	//jQuery用
	$.ajax({
		url 		: TARGET_AJAX_PATH,
		type 		: "post",
		processData 	: false,
//		contentType 	: "text/javascript",
		data 		: post_data,
//		data 		: json,
		dataType	: "json",
//		async		: false,
		cache		: false,
		success		: resultJson
	});

}

/*********************************************
*********************************************/
function resultJson( result ){
	alert( "メールを送信しました" );
}
/*********************************************
	
*********************************************/
window.onload = function(){
}
