function checkFrmAtendimentoDepartamentos() {
	ids = new Array('departamento_geral','departamento_comercial','departamento_suporte');

	for (i = 0;i < ids.length;i++) {
		obj = document.getElementById(ids[i]);
		if (obj) {
			if (obj.checked) return true;
		}
	}
	return false;
}

function checkFrmAtendimento(form) {
	if (form) {
		if (checkFrmAtendimentoDepartamentos()) {
			if (form.nome.value != '') {
				if (validarEmail(form.m1.value)) {
					if (form.assunto.value != '') {
						if (form.mensagem.value != '') {
							return true;
						} else emitirAlerta('Preencha a sua mensagem',form.mensagem);
					} else emitirAlerta('Preencha o assunto da sua mensagem',form.assunto);
				} else emitirAlerta('Preencha o seu e-mail',form.m1);
			} else emitirAlerta('Prencha o seu nome',form.nome);
		} else emitirAlerta('Selecione o departamento que deseja entrar em contato');
	}
	return false;
}