 function ValidateEmail(theForm){
 	if ((theForm.ea.value == " Email Signup ") || (theForm.ea.value == "")) {
	   document.getElementById("emsg").innerHTML = "Please enter your Email Address.";
		theForm.ea.value = "";
		theForm.ea.focus();
		return(false);
	}
 }
function ClearMsg(what){
			document.getElementById(what).innerHTML = "&nbsp;";
	}

