function fncChk(){
	if(document.frm.txtnm.value==""){
		window.alert("[ お名前 ]を入力してください");
		document.frm.txtnm.focus();
		document.frm.txtnm.select();
		return false;
	}else if(document.frm.txtmail.value==""){
		window.alert("[ メールアドレス ]を入力してください");
		document.frm.txtmail.focus();
		document.frm.txtmail.select();
		return false;
	}else if(document.frm.txttit.value==""){
		window.alert("[ タイトル ]を入力してください");
		document.frm.txttit.focus();
		document.frm.txttit.select();
		return false;
	}else if(document.frm.txtdtl.value==""){
		window.alert("[ 質問 ]を入力してください");
		document.frm.txtdtl.focus();
		document.frm.txtdtl.select();
		return false;
	}else if(!confirm("送信してよろしいですか？")){
		return false;
	}
	return true;
}
