<!--
//Function that validates email address
function checkEmail() {
	var emailChar = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/;
	if(document.getElementById('email').value.match(emailChar)){
		return true;
	}
	else {
		alert("Please enter a valid email address. (For example, myname@website.com)");
		return false;
	}
}
// -->

<!--
//Function that validates required fields
function validate_form ( )
{
valid = true;

if (document.forms['maillist'].email.value == "" || document.forms['maillist'].email.value == "Email Address")
{alert ("Please enter a valid email address. (For example, myname@website.com)"); valid = false;}

if (document.forms['maillist'].type.selectedIndex == 0)
{alert ("Please choose a mailing list to join." ); valid = false;}

return valid;
}
// -->