function submitEmailForm()
{
	var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
	
	if ($('#email').val() == '')
	{
		$("#emailError").html("Email Address Required");
	}
	else if (!emailReg.test($('#email').val()))
	{
		$("#emailError").html("Please enter a valid email address");
	}
	else
	{
		var email_success = $.ajax({
							url: "enewsletter_signup.cfm",
							global: false,
							type: "POST",
							data: ({email : $('#email').val()}),
							dataType: "html",
							async: false,
							success: function(msg) {}
								   }).responseText;
		$("#emailError").html(email_success);
	}
}
