//Validates all the necessary fields on the contactUs.asp page
function verifyContactUsPage() {
	if (isFieldBlank(frmContact.firstName, "text", "On", "First Name")) {
		return false;
	}
	if (isFieldBlank(frmContact.lastName, "text", "On", "Last Name")) {
		return false;
	}
	if (isEmailValid(frmContact.emailAddress) == false) {
		return false;
	}
	if (isFieldBlank(frmContact.subject, "select", "On", "Subject")) {
		return false;
	}
	if (isFieldBlank(frmContact.message, "text", "On", "Message")) {
		return false;
	}
	return true;
}