// CONTACT FORM VALIDATION SCRIPT
<!--
function checkForm() {
	if (document.fb_form.name.value.length < 1) {
		alert ("请输入您的全名");
		document.fb_form.name.focus();
		return false;	
	}	
	if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.fb_form.email.value))){
		alert("无效的电子邮件地址！请重新输入")
		document.fb_form.email.focus();
		document.fb_form.email.select();
		return (false);
	}
	if (document.fb_form.subject.selectedIndex < 1) {
		alert("请您选择一个主题");
		document.fb_form.subject.focus();
		return false;
	}
	if (document.fb_form.comments.value.length < 4) {
		alert("Please enter your Comments or Questions.请输入您的意见或问题。");
		document.fb_form.comments.focus();
		document.fb_form.comments.select();
		return false;	
	}
	return (true);
}
//-->