function Months() {
  this[0] = "Janeiro"
  this[1] = "Fevereiro"
  this[2] = "Mar&ccedil;o"
  this[3] = "Abril"
  this[4] = "Maio"
  this[5] = "Junho"
  this[6] = "Julho"
  this[7] = "Agosto"
  this[8] = "Setembro"
  this[9] = "Outubro"
  this[10] = "Novembro"
  this[11] = "Dezembro"
}

var mon = new Months()
var now = new Date()

var s1, sPage;
s1 = document.location.pathname;
sPage = s1.substring(1,s1.length-4);

document.write('<TABLE Border=0 CellSpacing=0 CellPadding=3 Width="100%"><TR><TD Align=left Width="20%">');
document.write('<A HREF="/default.htm" target="_parent"><IMG SRC="/images/logo.jpg" Align=middle Width=80 Border=0></A></TD>');
document.write('<TD Align=center Width="60%"><FONT Color="#00009C"><FONT Size="6">');
document.write('<B>Brasil Chapter</B></FONT><BR>');
document.write('<FONT Size="2"><B>Clube de Colecionadores de itens de cerveja, refrigerante e afins</B></FONT><br><FONT Size="1" color="black"><B>');

document.write(now.getDate() + " de ")
document.write(mon[now.getMonth()] + " de ")
document.write(now.getYear() + "&nbsp")
document.write(" ", now.getHours())
if (now.getMinutes() < 10 ) {
  document.write(":0", now.getMinutes())
} else {
  document.write(":", now.getMinutes())
}
if (now.getSeconds() < 10 ) {
  document.write(":0", now.getSeconds())
} else {
  document.write(":", now.getSeconds())
}
document.write('</TD><TD Align=right Width="20%">');
document.write('<A HREF="/default.htm" target="_parent"><IMG SRC="/images/7thcan.jpg" Align=middle Width=80 Height=80 HSpace=0 VSpace=0 Border=0></A>');
document.write('</TD></TR></TABLE>');

