
function sendForm(_id){
	
	// alert(_id);
	
	/*** お問合せ ***/
	
	if(_id=='contact'){
		if(!Field.present('name')){
			alert("お名前は必ずご記入お願いします");
			Field.activate('name');
			return 0;
		}
		if(!Field.present('mailcc')){
			alert("メールアドレスを入力してください");
			Field.activate('mailcc');
			return 0;
		}
		if(!Field.present('honbun')){
			alert("本文をご記入ください");
			Field.activate('honbun');
			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:600px;height:100px;line-height:100px;padding:30px;background-color:#000000;margin-top:20px;'>送信が完了いたしました</span>";
			}else{
				alert(_obj.responseText);
			}
		}
		
	});
}


