// MOSTRA DIV
function mostra(objeto) { 
 var div = window.document.getElementById(objeto);
 if (div.style.display=='none') { 
  div.style.display=''; 
 } else {
  div.style.display='none'; 
 } 
}
// MOSTRA DIV
