function checkForm(thisForm) {
	if (thisForm.name.value == "" ) {
		window.alert("名前を入力してください");
		thisForm.name.focus();
		return false;
	}
	
	if (thisForm.name.value.match(/('|"|<|>|\?|!|\$|\[|\]|;|&|\^|\*)/)){
		 window.alert('「,"\<>!?;[]^&$*」を名では使用できません。');
		 thisForm.name.focus();
		 return false;
	}		
	if (thisForm.kana.value == "" ) {
		window.alert("フリガナを入力してください");
		thisForm.kana.focus();
		return false;
	}
	
	var mail = thisForm.mail.value;
	if (mail == "" ) {
		window.alert("メールアドレスを入力してください。");
		thisForm.mail.focus();
		return false;
	}
	

	
	if (thisForm.comment.value == "" ) {
		window.alert("お問い合せ内容を入力してください。");
		thisForm.comment.focus();
		return false;
	}

	
	return true;
}
