
function sendForm(_id){
	
	// alert(_id);
	
	/*** お問合せ ***/
	
	if(_id=='mailf'){
		if(!Field.present('name')){
			alert("お名前は必ずご記入お願いします");
			Field.activate('name');
			return 0;
		}
		if(!Field.present('mailcc')){
			alert("メールアドレスを入力してください");
			Field.activate('mailcc');
			return 0;
		}
	}
	
	/*** 送信処理 ***/
	
	if(!confirm("お疲れ様でした。それではメッセージを送信します")) return 0; 
	
	new Ajax.Request('/send.php',{
		method: "post",
		postBody: encodeURI(Form.serialize(_id)),
		
		onLoading :function(){
			$(_id + "_btn").disabled = true;
			$(_id + "_btn").value="送信しています....";
		},
		
		onComplete:function(_obj){
			if(_obj.responseText=='1'){
				alert("送信されました");
				$(_id + "_btn").value = "送信完了";
				$(_id + "_msg").innerHTML = "<span style='width:290px;padding:15px;background-color:#ffcc00;margin-top:10px;'>送信が完了いたしました</span>";
			}else{
				alert(_obj.responseText);
			}
		}
		
	});
}


