function displayDate(){
      var this_month = new Array(12);
      this_month[0]  = "janeiro";
      this_month[1]  = "fevereiro";
      this_month[2]  = "março";
      this_month[3]  = "abril";
      this_month[4]  = "maio";
      this_month[5]  = "junho";
      this_month[6]  = "julho";
      this_month[7]  = "agosto";
      this_month[8]  = "setembro";
      this_month[9]  = "outubro";
      this_month[10] = "novembro";
      this_month[11] = "dezembro";
      var today = new Date();
      var day   = today.getDate();
      var month = today.getMonth();
      var year  = today.getYear();
      if (year < 1900){
         year += 1900;
      }
      return(day+" de "+this_month[month]+" de " +year);
};

function displayDateen(){
      var this_month = new Array(12);
      this_month[0]  = "January";
      this_month[1]  = "February";
      this_month[2]  = "Mars";
      this_month[3]  = "April";
      this_month[4]  = "May";
      this_month[5]  = "June";
      this_month[6]  = "July";
      this_month[7]  = "August";
      this_month[8]  = "September";
      this_month[9]  = "October";
      this_month[10] = "November";
      this_month[11] = "December";
      var today = new Date();
      var day   = today.getDate();
      var month = today.getMonth();
      var year  = today.getYear();
      if (year < 1900){
         year += 1900;
      }
      return(this_month[month]+" "+ day +", " +year);
}
//Função para menu
if (document.all || document.layers) {
	IE4 = (document.all);
	NS4 = (document.layers);
	NS6 = false;
} else if (document.getElementById) {
	IE4 = false;
	NS4 = false;
	NS6 = (document.getElementById);
}
function getStyle(id){return NS4 ? document[id] : NS6 ? document.getElementById(id).style : document.all[id].style;}
function HideLayer(id){getStyle(id).visibility = NS4 ? "hide" : "hidden"; getStyle(id).display = "none";}
function ShowLayer(id){getStyle(id).visibility = NS4 ? "show" : "visible"; getStyle(id).display = "block";}