function showhide(elemento) {
  el = document.getElementById(elemento);
  if (el.style.display == "none")
     el.style.display = "block";
  else
     el.style.display = "none";
}

function alteraExibicao(elemento,elementoMais,elementoMenos) {
  el = document.getElementById(elemento);
  elMais = document.getElementById(elementoMais);
  elMenos = document.getElementById(elementoMenos);
  
  if (el.style.display == "none") 
  {
       el.style.display = "block";
       elMais.style.display = "none";
       elMenos.style.display = "inline";
  }
  else
  {
     el.style.display = "none";
     elMais.style.display = "inline";
     elMenos.style.display = "none";
  }
}
