/************************************************************
SITE JS Elements
************************************************************/
function validateEmail(theemail) {
	if (theemail.length == 0) { 
		return false;
	} else if (theemail.length < 5) { 
		alert("Check your email address again.");
		return false;
	} else if (theemail.length > 64) {
		alert("Email address must be 64 characters or less.");
		return false;
	} else if (theemail.search('@') == -1) {
		alert("Check your email address again.");
		return false;
	} else if (theemail.search('.') == -1) {
		alert("Check your email address again.");
		return false;
	} else { 
		return true;
	}
}
function validatePhone(thephone) {
	if (thephone.length == 0) { 
		return false;
	} else {
		return true;
	}
}

function validateMessage(theemail, thephone) {
	em = validateEmail(theemail);
	ph = validatePhone(thephone);
	if ((em==false) && (ph==false)) {
		return false;
	} else {
		return true;
	}
}

