function MakeArray(a){
this.length = a;
return this; }

monthNames = new MakeArray(12);
monthNames[1] = "Janeiro";
monthNames[2] = "Fevereiro";
monthNames[3] = "Março";
monthNames[4] = "Abril";
monthNames[5] = "Maio";
monthNames[6] = "Junho";
monthNames[7] = "Julho";
monthNames[8] = "Agosto";
monthNames[9] = "Setembro";
monthNames[10] = "Outubro";
monthNames[11] = "Novembro";
monthNames[12] = "Dezembro";

dayNames = new MakeArray(7);
dayNames[1] = "Domingo";
dayNames[2] = "Segunda";
dayNames[3] = "Terça";
dayNames[4] = "Quarta";
dayNames[5] = "Quinta";
dayNames[6] = "Sexta";
dayNames[7] = "Sabado";

function customDateString(oneDate){
var theDay = dayNames[oneDate.getDay() + 1];
var theMonth = monthNames[oneDate.getMonth() + 1];
var theYear = oneDate.getYear() + 1900 ;
if (document.layers) {
if ( theYear < 100 )
theYear +=1900; } else {
theYear = theYear - 1900; }
return theDay + " - " + oneDate.getDate() + " de " + theMonth + ", " + theYear; }
function goPage(page) 
{ document.location=page; }