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);
	}

	if (theForm.fEndereco.value == "")
	{
		alert("Informe seu endereço.");
		theForm.fEndereco.focus();
		return (false);
	}

	if (theForm.fEndereco.value.length < 4)
	{
		alert("É necessário fornecer seu endereço.");
		theForm.fEndereco.focus();
		return (false);
	}

	if (theForm.fBairro.value == "")
	{
		alert("Informe o bairro.");
		theForm.fBairro.focus();
		return (false);
	}

	if (theForm.fBairro.value.length < 2)
	{
		alert("Informe o bairro.");
		theForm.fBairro.focus();
		return (false);
	}

	if (theForm.fCidade.value == "")
	{
		alert("Informe o município.");
		theForm.fCidade.focus();
		return (false);
	}

	if (theForm.fCidade.value.length < 2)
	{
		alert("É necessário digitar o nome da cidade.");
		theForm.fCidade.focus();
		return (false);
	}

	if (theForm.fCep.value == "")
	{
		alert("Por favor, digite o Cep.");
		theForm.fCep.focus();
		return (false);
	}

	if (theForm.fCep.value.length < 8)
	{
		alert("É necessário digitar o Cep.");
		theForm.fCep.focus();
		return (false);
	}

return (true);
}
