function verifydata() {
	if (document.f1.first.value == "") { 
		alert("Please Type In Your First Name");
		return false;
		}
	if (document.f1.last.value == "") { 
		alert("Please Type In Your Last Name");
		return false;
		}
	if (document.f1.email.value == "") { 
		alert("Please Type in an E-Mail Address");
		return false;
		}
    if (document.f1.email.value.indexOf('@') == -1) {
        alert("E-Mail Address must contain an @ symbol");
        return false;
    }
    if (document.f1.email.value.indexOf('.') == -1) {
        alert("E-Mail Addresses must contain a period in the domain name");
        return false;
    }
	if (document.f1.phone.value == "") { 
		alert("Please Type In Your Phone Number");
		return false;
		}
	if (document.f1.phone.value.length !=12 || document.f1.phone.value.substr(3, 1) != "-" || document.f1.phone.value.substr(7, 1) != "-") { 
		alert("Please Use the 999-999-9999 Format for Your Phone Number");
		return false;
		}
    var valid = "0123456789";
    for (var i = 0; i < document.f1.phone.value.length; i++ ) {
	    if (valid.indexOf(document.f1.phone.value.substr(i, 1)) == -1 && i!=3 && i!=7) {
		    alert("Phone Number may contain only the digits 0 - 9. Please use the shown format for your phone number");
		    return false;
		    }
	   	}
	if (document.f1.birthyear.value == "") { 
		alert("Please Select the Year of Your Birth");
		return false;
		}
	if (document.f1.birthmonth.value == "") { 
		alert("Please Select the Month of Your Birth");
		return false;
		}
	if (document.f1.start.value == "") { 
		alert("Please Select the Year You Started Officiating");
		return false;
		}
	if (document.f1.pool.value == "") { 
		alert("Please Select the Official Pool You Wish Access To");
		return false;
		}
	if (document.f1.username.value == "") { 
		alert("Please Type in a UserName");
		return false;
		}
	var Numeric = false;
	if (document.f1.password1.value == "") { 
		alert("Please Type in a New password");
		return false;
		}
	if (document.f1.password1.value.length < 6) { 
		alert("The password must be at least 6 characters long");
		return false;
		}
	for (i = 0; i <= (document.f1.password1.value.length-1); i++) {
		if (!isNaN(document.f1.password1.value.substr(i,1))) { Numeric = true; }
		}
	if (!Numeric) { 
		alert("There must be a number somewhere in your password");
		return false;
		}
	if (document.f1.password2.value == "") { 
		alert("Please retype your password in the verification field");
		return false;
		}
	if (document.f1.password1.value != document.f1.password2.value ) { 
		alert("Your retyped password did not match your new password");
		return false;
		}
	if (!document.f1.agree.checked ) { 
		alert("Please Read the Consent Form and Approve");
		return false;
		}
}