<!--
//Função de expansão de itens ocultos
function expande(ch) {

	if (document.all['camada_ativa'].value != ''){
		var camada_ativa;
		camada_ativa = document.all['camada_ativa'].value;
		document.all[camada_ativa].style.display = "none";
	}

	if (ch != camada_ativa){
		document.all['camada_ativa'].value = ch;
		var el = document.all[ch];
		if (null!=el) el.style.display = "none" == el.style.display ? "" : "none";
	}
}

function expande_normal(ch) {

	if (ch != camada_ativa){
		var el = document.all[ch];
		if (null!=el) el.style.display = "none" == el.style.display ? "" : "none";
	}
}
//-->