function mostraCoisas (postid) { 
   whichpost = document.getElementById(postid); 
   if (whichpost.className=="hidden") { 
      whichpost.className="show"; 
   } 
   else { 
      whichpost.className="hidden"; 
   } 
} 

function abrePopup() {
	window.open('popup_Condominio.asp', null,'height=715,width=570,status=yes,toolbar=no,menubar=no,location=no');
}

function changeImovel(id,id_uti) {
	/*mudando TODAS as classes dos botoes para INATIVO */
	document.getElementById('utCaracteristicas').className="inativo";
	document.getElementById('utContato').className="inativo";
	document.getElementById('utIndique').className="inativo";
	/*mudando SOMENTE a classe do botao clicado para ATIVO */
	document.getElementById(id).className="ativo";
	
	/*mudando TODAS as classes das caracteristicas para HIDDEN */
	document.getElementById('utiliCaracteristicas').className="hidden";
	document.getElementById('utiliContato').className="hidden";
	document.getElementById('utiliIndique').className="hidden";
	/*mudando SOMENTE a classe do caracteristica para SHOW */
	document.getElementById(id_uti).className="show";
}
