<!--
function contest(theForm)
{
	 if (theForm.email.value.indexOf("@") == -1 ||
		 theForm.email.value.indexOf(".") == -1) 
	{
		alert("Please include a proper email address.");
		theForm.email.focus();
		return(false);
	}
	else return (true);
}
//-->
