function fm_inq1chk() {


	if( window.document.fm_inq1.elements['contact_reason[0]'].checked==false &&
		window.document.fm_inq1.elements['contact_reason[1]'].checked==false &&
		window.document.fm_inq1.elements['contact_reason[2]'].checked==false &&
		window.document.fm_inq1.elements['contact_reason[3]'].checked==false &&
		window.document.fm_inq1.elements['contact_reason[4]'].checked==false &&
		window.document.fm_inq1.elements['contact_reason[5]'].checked==false) {
		alert("問合せ内容が未選択です");
		return;
	}

	if( window.document.fm_inq1.elements['con_method[0]'].checked==false &&
		window.document.fm_inq1.elements['con_method[1]'].checked==false &&
		window.document.fm_inq1.elements['con_method[2]'].checked==false &&
		window.document.fm_inq1.elements['con_method[3]'].checked==false) {
		alert("ご希望の連絡方法が未選択です");
		return;
	}

	if(window.document.fm_inq1.name_k.value == "") {
		alert("お名前（漢字）が未記入です。");
		return;
	}
/*
	if(window.document.fm_inq1.name_f.value == "") {
		alert("お名前（フリガナ）が未記入です。");
		return;
	}
*/
	if(window.document.fm_inq1.main_mail.value == "") {
		alert("Ｅメールが未記入です。");
		return;
	}
	if(window.document.fm_inq1.main_mail.value.indexOf("@") == -1){
		alert("E-mailの入力が間違っています");
		return;
	}

	if(window.document.fm_inq1.tel_1.value == "" ||
	window.document.fm_inq1.tel_2.value == "" ||
	window.document.fm_inq1.tel_3.value == "") {
		alert("お電話番号が未記入です。");
		return;
	}
/*
	if(window.document.fm_inq1.fax_1.value == "" ||
	window.document.fm_inq1.fax_2.value == "" ||
	window.document.fm_inq1.fax_3.value == "") {
		alert("ＦＡＸ番号が未記入です。");
		return;
	}
*/
	if(window.document.fm_inq1.zip_1.value == "" || window.document.fm_inq1.zip_2.value == "") {
		alert("郵便番号が未記入です。");
		return;
	}

	if(window.document.fm_inq1.pref.value == "") {
		alert("都道府県が未選択です。");
		return;
	}

	if(window.document.fm_inq1.address.value=="") {
		alert("ご住所が未記入です。");
		return;
	}

	if (window.confirm("送信します。よろしいですか？")) {
	   window.document.fm_inq1.submit();
	}
}

