   //function metedata()
   //function toggleMenu(currMenu)
   //function toggleMenuAll(currMenu)

   //-----------------------------------------------------------------------------------
   function metedata() {
      var gsMonthNames = new Array (
                                    'Janeiro',
                                    'Fevereiro',
                                    'Março',
                                    'Abril',
                                    'Maio',
                                    'Junho',
                                    'Julho',
                                    'Agosto',
                                    'Setembro',
                                    'Outubro',
                                    'Novembro',
                                    'Dezembro'
                                    );


      var gsDayNames = new Array (
                                  'Domingo',
                                  'Segunda',
                                  'Terça',
                                  'Quarta',
                                  'Quinta',
                                  'Sexta',
                                  'Sábado'
                                  );

      var myDate = new Date();
      return gsDayNames[myDate.getDay()] + ', ' + myDate.getDate() + ' ' + gsMonthNames[myDate.getMonth()] + ' '   + myDate.getFullYear();
   }
   //-----------------------------------------------------------------------------------
                                     
   //-----------------------------------------------------------------------------------
   function toggleMenu(currMenu) {
      if (document.all) {
         thisMenu = eval("document.all." + currMenu + ".style");
         if (thisMenu.display == "block") {
            thisMenu.display = "none"
         }
         else {
            thisMenu.display = "block"
         }
         return false
      }
      else {
         return true
      }
   }
   //-----------------------------------------------------------------------------------

   //-----------------------------------------------------------------------------------
   function toggleMenuAll(currMenu) {
      divs=document.getElementsByTagName("div");
      for (i=0;i<divs.length;i++) {
        divs[i].style.display="none";
      }

      if (document.all) {
         thisMenu = eval("document.all." + currMenu + ".style");
         if (thisMenu.display == "block") {
            thisMenu.display = "none"
         }
         else {
            thisMenu.display = "block"
         }
         return false
      }
      else {
         return true
      }
   }
   //-----------------------------------------------------------------------------------
