
<!--
//Mostra Dados do documento
var lastModified = document.lastModified;  // data da ultima alteracao
var protocol = location.protocol;    //  protocolo de transferencia
var hostname = location.hostname;    //  host da pagina WWW
var path = location.pathname;        //  caminho da pagina WWW
var URL = protocol + "://" + hostname + path;
var hoje = new Date();
var dia = hoje.getDate();
var mes = hoje.getMonth();
mes++
var ano = hoje.getYear();
var diasSem = new MakeArray(7);
diasSem[1] = "Domingo, ";
diasSem[2] = "Segunda-feira, ";
diasSem[3] = "Terça-feira, ";
diasSem[4] = "Quarta-feira, ";
diasSem[5] = "Quinta-feira, ";
diasSem[6] = "Sexta-feira, ";
diasSem[7] = "Sábado, ";
var sem = diasSem[hoje.getDay() + 1];
var hor = hoje.getHours();
var min = hoje.getMinutes();
var seg = hoje.getSeconds();
var data = sem  + dia + "/" + mes + "/" + ano + "   " + hor + ":" + min + ":" + seg;

function MakeArray(n) {
   this.length = n;
   for (var i = 1; i <= n; i++)
      this[i] = 0;
   return this;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

