<!--

function validateEmail() {
	var yourName = document.newsletter.name.value;
	if ((yourName == '') || (yourName == 'Your Name' ))
	{
		alert("Please enter your name\n") ;
		return false;
	}
	var theValue = document.newsletter.email.value;
	var at = theValue.indexOf('@',0);
	if (theValue == -1 || theValue.indexOf (".",at) == -1) {
		alert("Email is incorrect") ;
		return false;
	}

	return true;
}
//-->
