function Init(){

	//document.qa.予約確認方法(0).checked = true;
	now = new Date();
}
function SubmitCheck(){

	if(document.qa.お名前.value == ""){
		alert( "【お名前】を入力してください" );
		document.qa.お名前.focus();
		return false;
	}

	if (document.qa.メールアドレス.value.indexOf('@')==-1) {
		alert("メールアドレスの形式が違います");
		document.qa.メールアドレス.focus();
		return false;
	}

	if(document.qa.質問内容.value == ""){
		alert( "【質問内容】を入力してください" );
		document.qa.質問内容.focus();
		return false;
	}

	return true;
}
