function inq_check() {
	if(window.document.fm_inq.v_name.value == "") {
		alert("お名前が未記入です。");
		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;
		}
	}
	window.document.fm_inq.v_regular.value="YCMS_INQFORM"
	window.document.fm_inq.submit();
}
