function chkMailListEmail(theForm) {

	if (theForm.email.value !="")  {
		if(emailCheck(theForm.email.value))	{
		} else {
			theForm.email.focus();
			return (false);
		}
	} else {
		alert("Please enter your email address");
			theForm.email.focus();
			return (false);
	}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function clearEmail(v) {
if (document.MailForm.email.value=="Your Email Address") {
document.MailForm.email.value="";
}
}
