function Validate()
{
	var Msg="";
	
	if (document.getElementById("email").value.length == 0)
	{ Msg=Msg + "* Your Email Address\n"; }

	if (Msg == "")
	{
		if (document.getElementById("email").value.indexOf("@") == -1)
		{ Msg=Msg + "* Your Email Address\n"; }

		else if ((Msg == "") && (document.getElementById("email").value.indexOf(".") == -1))
		{ Msg=Msg + "* Your Email Address\n"; }
	}

	if(Msg != "")
	{
		alert("Sorry, but before proceeding,\nthe following fields must be filled-in:\n\n" + Msg);
		return false;
	}

	else
	{ return true; }
}

document.getElementById("newsletterfrm").onsubmit=Validate;