function Nav_Validator(theForm)
{

	if (theForm.fNome.value == "")
	{
		alert("Informe seu nome.");
		theForm.fNome.focus();
		return (false);
	}

	if (theForm.fNome.value.length < 4)
	{
		alert("É necessário digitar seu nome.");
		theForm.fNome.focus();
	return (false);
	}

	if (theForm.fEmail.value == "")
	{
		alert("Por favor, digite seu e-mail.");
		theForm.fEmail.focus();
		return (false);
	}

	if (theForm.fEmail.value.length < 7)
	{
		alert("Por favor, digite seu e-mail corretamente.");
		theForm.fEmail.focus();
		return (false);
	}

return (true);
}

