function checkFrmContato(form) {
	if (form) {
		if (form.departamento.value != '') {
			if (form.nome.value != '') {
				if (validarEmail(form.email.value)) {
					if (form.assunto.value != '') {
						if (form.mensagem.value != '') {
							return true;
						} else emitirAlerta('Preencha a sua mensagem',form.mensagem);
					} else emitirAlerta('Preencha o assunto do contato',form.assunto);
				} else emitirAlerta('O e-mail informado é inválido',form.email);
			} else emitirAlerta('Preencha o seu nome',form.nome);
		} else emitirAlerta('Selecione o departamento de destino',form.departamento);
	}
	return false;
}