//************************************
//  メール送信
//************************************
function jf_Submit(){

	flag = 0;
	for ( i = 0 ; i < document.frm.Q.length ; i++){
		if (document.frm.Q[i].checked){ flag = 1; }
    }
	if (!flag){
		alert("お問い合せ内容が選択されていません");
        return;
	}

//	if(document.frm.inquiry.value==""){ alert("お問い合せ内容(詳細)が入力されていません"); document.frm.inquiry.focus(); return; }
	if(document.frm.addr.value==""){ alert("会社所在地が選択されていません"); document.frm.addr.focus(); return; }
	if(document.frm.name1.value==""){ alert("担当者名（姓）が入力されていません"); document.frm.name1.focus(); return; }
	if(document.frm.name2.value==""){ alert("担当者名（名）が入力されていません"); document.frm.name2.focus(); return; }
//	if(document.frm.tel.value==""){ alert("電話番号が入力されていません"); document.frm.tel.focus(); return; }
//	if(document.frm.mail.value==""){ alert("メールアドレスが入力されていません"); document.frm.mail.focus(); return; }

	if(!/[a-zA-Z0-9\-_]+[@][a-zA-Z0-9\-_]+/.test(document.frm.mail.value)){ alert("\""+document.frm.mail.value+"\"は適切なアドレスではありません!"); document.frm.mail.focus(); return; }

	if(!confirm("入力内容で送信してもよろしいですか？")) return;
	document.frm.action="/smail.cgi";
	document.frm.submit();

}
