function ValidateNewsletter(ccoptin){

	
	if (ccoptin.ea.value == "")
	{
		alert ("Please enter your email address in this field");
		ccoptin.ea.focus();
		return (false);
	}
	//if (ccoptin.ea.value.length > 1) {
	//    if ((ccoptin.ea.value.indexOf("@") == -1) ||
	//	(ccoptin.ea.value.indexOf(".") == -1))
	//	 {
	//	    alert("Please type a valid email address!");
	//	   ccoptin.ea.value.focus();
	//    return false;
	//	}
//	}
		
	ccoptin.submit();

}
