function incheck(event_form) {
	if(event_form.name.value == ""){
		window.alert('お名前が未入力です');
		event_form.name.focus();
		return false;
	}
	if(event_form.mail_ad.value == ""){
		window.alert('メールアドレスが未入力です');
		event_form.mail_ad.focus();
		return false;
	}
	if(!event_form.mail_ad.value.match(/.+@.+\..+/)){
		window.alert('メールアドレスが正しくありません');
		event_form.mail_ad.focus();
		return false;
	}
	if(event_form.mail_txt.value == ""){
		window.alert('お問い合わせ内容が未入力です');
		event_form.mail_txt.focus();
		return false;
	}
}