function Nav_Validator(theForm)
{
	if (theForm.f_Email.value=="")
	{
		alert("Informe seu e-mail.");
		theForm.f_Email.focus();
		return (false);
	}
	if (theForm.f_Email.value.indexOf("@")==-1)
	{
		alert("E-mail com formato inválido: ["+theForm.f_Email.value+"]");
		theForm.f_Email.focus();
		return (false);
	}
	if (theForm.f_Email.value.indexOf(".")==-1)
	{
		alert("E-mail formato inválido: ["+theForm.f_Email.value+"]");
		theForm.f_Email.focus();
		return (false);
	} 
	return (true);
}
