function ShowMenu() {

  if (document.getElementById("selectOne")) {
    document.getElementById("selectOne").style.visibility = "hidden"; 
  }
  if (document.getElementById("selectTwo")) {
    document.getElementById("selectTwo").style.visibility = "hidden"; 
  }
}

function HideMenu() {
  if (document.getElementById("selectOne")) {
    document.getElementById("selectOne").style.visibility = "visible";
  }
  if (document.getElementById("selectTwo")) {
    document.getElementById("selectTwo").style.visibility = "visible"; 
  }
}


<!--
//
//
        hoje = new Date()
        dia = hoje.getDate()
        dias = hoje.getDay()
        mes = hoje.getMonth()
        ano = hoje.getYear()
        if (dia < 10)
                dia = "0" + dia
        if (ano < 2000)
                ano = "19" + ano
        function CriaArray (n) {
        this.length = n }
        NomeDia = new CriaArray(7)
        NomeDia[0] = "Domingo"
        NomeDia[1] = "Segunda-feira"
        NomeDia[2] = "Terça-feira"
        NomeDia[3] = "Quarta-feira"
        NomeDia[4] = "Quinta-feira"
        NomeDia[5] = "Sexta-feira"
        NomeDia[6] = "Sábado"
        //
        NomeMes = new CriaArray(12)
        NomeMes[0] = "Janeiro"
        NomeMes[1] = "Fevereiro"
        NomeMes[2] = "Março"
        NomeMes[3] = "Abril"
        NomeMes[4] = "Maio"
        NomeMes[5] = "Junho"
        NomeMes[6] = "Julho"
        NomeMes[7] = "Agosto"
        NomeMes[8] = "Setembro"
        NomeMes[9] = "Outubro"
        NomeMes[10] = "Novembro"
        NomeMes[11] = "Dezembro"

// function WriteDate() {

//document.write ("<CENTER></FONT><FONT color='#0080FF' FACE='Arial' size='-1'>" + NomeDia[dias] + ", " + dia + " de " + NomeMes[mes] + " de " + ano + " </FONT></CENTER>")
// }
// -->

