function ValidaCampos(form)
{

	var txtNome       = form["txtNome"];
	var txtNoEmpresa  = form["txtNoEmpresa"];
	var txtNrTelefone = form["txtNrTelefone"];
	var txtNoEmail    = form["txtNoEmail"];
	var txtNoMensagem = form["txtNoMensagem"];	

	if (CampoInformado(txtNome) == false)
	{
		ExibeErro("frmContato",txtNome,false);
		return false;
	}
	
	if (CampoInformado(txtNoEmpresa) == false)
	{
		ExibeErro("frmContato",txtNoEmpresa,false);
		return false;
	}
	
	if (CampoInformado(txtNrTelefone) == false)
	{
		ExibeErro("frmContato",txtNrTelefone,false);
		return false;
	}	
	
	if (CampoInformado(txtNoEmail) == false)
	{
		ExibeErro("frmContato",txtNoEmail,false);
		return false;
	}
	
	if (CampoInformado(txtNoMensagem) == false)
	{
		ExibeErro("frmContato",txtNoMensagem,false);
		return false;
	}	
	
	return true;
} 