function inq_check() {
	if(window.document.fm_inq.v_sele.value == "") {
		alert("お問合せ用件が未選択です。");
		return;
	}

	if(window.document.fm_inq.v_name.value == "") {
		alert("お名前が未記入です。");
		return;
	}

	if(window.document.fm_inq.v_tel.value == "" && window.document.fm_inq.v_mail.value == "" ) {
		alert("お電話番号、もしくはe-mailをご未記入ください。");
		return;
	}

	if(window.document.fm_inq.v_mail.value != "") {
		str = window.document.fm_inq.v_mail.value;
		var tmp = str.match("^[0-9A-Za-z._-]+@[0-9A-Za-z.-]+$");
		if (tmp != str){
			alert("e-mailの入力が間違っています");
			return;
		}
	}

	if(window.document.fm_inq.v_desc.value == "") {
		alert("お問い合わせ内容が未記入です。");
		return;
	}

	window.document.fm_inq.v_regular.value="Hu3eibChei75fd71Fsfg9";
	window.document.fm_inq.submit();
}
