//(c) All rights reserved to BoardUp.com

<!--
function validCheck (frm) {
	if (frm.fullName.value.length<2) {
		alert('Please Enter a valid Full Name');
		frm.fullName.focus();
		return false;
		}

	var ph = frm.phone.value.replace( /[^\d]/g, "" );
	if (ph.length != 10) {
		alert("Please Choose a Valid Phone Number Including Area Code");
		frm.phone.focus();
		return false;
		}

	if (!(frm.zipCode.value.search (/^[0-9]{5}$/) > -1)) {
		alert('Please Enter a Valid Zip Code');
		frm.zipCode.focus()
		return false;
		}

	return true;
}
//-->

<!--
onload=function() {
	document.getElementById("fullName").focus();
}
//-->
