//............................................................................................................................
// FUNÇÃO FORM NEWSLETTER
function newsletter(theForm)
{
	if (theForm.email.value == "")
	{
		alert("Type your e-mail");
		theForm.email.focus();
		return (false);
	}
	if (theForm.email.value.length < 5)
	{
    		alert("Fill in the \"Email\" correctly.");
    		theForm.email.focus();
    		return (false);
  	}
  	if (theForm.email.value.indexOf ('@',0) == -1 || theForm.email.value.indexOf ('.',0) == -1)
  	{
    		alert("Fill in the \"Email\" correctly.");
    		theForm.email.focus();
    		return (false);
  	}
return (true);
}
