// CONTACT FORM VALIDATION SCRIPT
<!--
function checkForm() {
	if (document.fb_form.name.value.length < 1) {
		alert ("Please enter your Full Name.");
		document.fb_form.name.focus();
		return false;	
	}	
	if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.fb_form.email.value))){
		alert("Invalid E-mail Address! Please re-enter.")
		document.fb_form.email.focus();
		document.fb_form.email.select();
		return (false);
	}
	if (document.fb_form.subject.selectedIndex < 1) {
		alert("Please select a Subject.");
		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);
}
//-->