function inq_check() {
	if(window.document.fm_inq.sales.value == "") {
		alert("ご用件をお選び下さい");
		return;
	}
	if(window.document.fm_inq.desc.value == "") {
		alert("お問い合わせ内容をご記入下さい。");
		return;
	}

	if(window.document.fm_inq.last_name.value == "") {
		alert("氏名をご記入下さい。");
		return;
	}

	if(window.document.fm_inq.last_name_f.value == "") {
		alert("氏名(フリガナ)をご記入下さい。");
		return;
	}

	if(window.document.fm_inq.zip1.value == "" || window.document.fm_inq.zip2.value == "") {
		alert("郵便番号をご記入下さい。");
		return;
	}

	if(window.document.fm_inq.pref.value == "") {
		alert("都道府県をお選び下さい。");
		return;
	}

	if(window.document.fm_inq.address.value == "") {
		alert("市区町村・番地をご記入ください。");
		return;
	}

	if( window.document.fm_inq.contact[0].checked==false &&
		window.document.fm_inq.contact[1].checked==false &&
		window.document.fm_inq.contact[2].checked==false) {
		alert("連絡方法をお選び下さい。");
		return;
	}

	if(window.document.fm_inq.contact[0].checked==true && window.document.fm_inq.mail.value == "") {
		alert("メールアドレスをご記入ください。");
		return;
	} else {
		if(window.document.fm_inq.mail.value != "") {
			str = window.document.fm_inq.mail.value;
			var tmp = str.match("^[0-9A-Za-z._-]+@[0-9A-Za-z.-]+$");
			if (tmp != str){
				alert("メールアドレスの入力が間違っています");
				return;
			}
		}
	}

	if(window.document.fm_inq.contact[1].checked==true && window.document.fm_inq.tel.value == "") {
		alert("電話番号をご記入ください。");
		return;
	}

	if(window.document.fm_inq.contact[2].checked==true && window.document.fm_inq.fax.value == "") {
		alert("FAX番号をご記入ください。");
		return;
	}

	window.document.fm_inq.submit();
}

