// envioMenu(cd_categ=2) // MENU EM FLASH
function validaFormContato() {
	if(trim(document.form1.ds_nome.value) == "") {
		alert("Informe o seu nome.");
		document.form1.ds_nome.focus();
		return false;
	}
	if(trim(document.form1.ds_mensagem.value) == "") {
		alert("Digite sua mensagem.");
		document.form1.ds_mensagem.focus();
		return false;
	}
}


/* PROPOSTA DE */


// FORÇAR CAIXA ALTA
function capsOn(campo) {
	document.getElementById(campo).value = document.getElementById(campo).value.toUpperCase();
}
// FORÇAR CAIXA BAIXA
function capsOff(campo) {
	document.getElementById(campo).value = document.getElementById(campo).value.toLowerCase();
}