function checkFrmContato() {
	obj = document.frmContato;
	if (obj) {
		if (obj.setor.value != '') {
			if (obj.nome.value != '') {
				if (validarEmail(obj.email.value)) {
					if (obj.assunto.value != '') {
						if (obj.mensagem.value != '') {
							return true;
						} else emitirAlerta('Preencha a mensagem',obj.mensagem);
					} else emitirAlerta('Preencha o assunto',obj.assunto);
				} else emitirAlerta('O e-mail informado é inválido',obj.email);
			} else emitirAlerta('Preencha o seu nome',obj.nome);
		} else emitirAlerta('Selecione o setor com o qual deseja se comunicar',obj.setor);
	}
	
	return false;
}