<!--
	function form_check() {
		if(!document.q_form.name.value) {
			alert("氏名を入力してください");
			document.q_form.name.focus();
			return false;
		}	//end if
		
		if(!document.q_form.name_kana.value) {
			alert("フリガナ（氏名）を入力してください");
			document.q_form.name_kana.focus();
			return false;
		}	//end if

		if(!document.q_form.tel1.value||!document.q_form.tel2.value||!document.q_form.tel3.value) {
			alert("電話番号を入力してください");
			document.q_form.tel1.focus();
			return false;
		}	//end if

		if(!document.q_form.email.value) {
			alert("メールアドレスを入力してください");
			document.q_form.email.focus();
			return false;
		}	//end if

		if(!document.q_form.comment.value) {
			alert("お問い合わせ内容を入力してください");
			document.q_form.comment.focus();
			return false;
		}	//end if

		return true;
	}	//end function

//-->
