function checkFrmContato() {
	obj = document.frmContato;
	if (obj) {
		if (obj.nome.value != '') {
			if (validarEmail(obj.email.value)) {
				if (obj.assunto.value != '') {
					if (obj.mensagem.value != '') {
						return true;
					} else emitirAlerta('Preencha a sua 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);
	}
	return false;
}