
function VerifyData() {
	
	if (document.form2.name.value == "") {
		alert ("You have not entered a Name. \n\n Please go back and enter this information.");
		document.form2.name.focus();
		return false;
	}

	return checkEmail(this)
	
}


function checkEmail(myForm) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.form2.email.value)){
	return (true)
	}
	alert("The E-Mail Address you entered is invalid. \n\n Please go back and enter a valid E-Mail Address.")
	document.form2.email.focus();
	return (false)
}

