
function LimpaBusca1(nome){

  if((document.getElementById(nome).value)=="Palavra - Chave"){
    with (document) {
        getElementById(nome).value = "";
    }
  }
}

function LimpaBusca2(nome){
  if((document.getElementById(nome).value)=="Keyword"){
    with (document) {
        getElementById(nome).value = "";
    }
  }
}

function LimpaBusca3(){
  if((document.getElementById(nome).value)=="Palabra clave"){
    with (document) {
        getElementById(nome).value = "";
    }
  }
}

function exibe_rodape(titulo)
{
  if (document.getElementById(titulo).style.visibility=='visible')
  {
    document.getElementById(titulo).style.visibility='hidden';
  }
  else
  {
    document.getElementById(titulo).style.visibility='visible';
  }
}