function checkWholeForm27490(theForm){
	var why = "";
	if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value);
	if (theForm.CaptchaV2) why += isEmpty(theForm.CaptchaV2.value, "Enter Word Verification in box below");
	if (why != ""){alert(why);
	return false;
	}
	theForm.submit();return false;
}
