function contato_form(){ document.getElementById('contato_div').style.display = 'block'; }
function saicontato_form(){ document.getElementById('contato_div').style.display = 'none'; }
function contato_dados(){ document.getElementById('contato_dados').style.display = 'block';
document.getElementById('mostrar').style.display = 'none'; }
function saicontato_dados(){ document.getElementById('contato_dados').style.display = 'none';
document.getElementById('mostrar').style.display = 'block';}
var tam = 11;
function Fonte(tipo)
{
  if( tipo == 'mais' ) { if( tam < 16 ) tam += 2 ;  }
  else { if( tam > 9 ) tam -= 2 ;   }
  document.getElementById('pagina').style.fontSize = tam+'px'  } 
