function checkFrmMural(form){
	if(form){
		if(form.nome.value!=""){
			if(validarEmail(form.email.value)){
				if(form.recado.value!=""){
					return true;
				} else emitirAlerta("Preencha o seu recado",form.recado);
			} else emitirAlerta("Verifique o email informado",form.email);
		} else emitirAlerta("Preencha o seu nome",form.nome);
	} else return false;
	return false;
}