                <!-- Begin
                DaysofWeek = new Array()
                DaysofWeek[0]="Domingo"
                DaysofWeek[1]="2ª feira"
                DaysofWeek[2]="3ª feira"
                DaysofWeek[3]="4ª feira"
                DaysofWeek[4]="5ª feira"
                DaysofWeek[5]="6ª feira"
                DaysofWeek[6]="Sábado"
                Months = new Array()
                Months[0]="Janeiro"
                Months[1]="Fevereiro"
                Months[2]="Março"
                Months[3]="Abril"
                Months[4]="Maio"
                Months[5]="Junho"
                Months[6]="Julho"
                Months[7]="Agosto"
                Months[8]="Setembro"
                Months[9]="Outubro"
                Months[10]="Novembro"
                Months[11]="Dezembro"
                RightNow = new Date()
                var day = DaysofWeek[RightNow.getDay()]
                var date = RightNow.getDate()
                var Month = Months[RightNow.getMonth()]
                var Year = RightNow.getFullYear()
                document.write(day+ ", "+ " "+ date+" "+ "de" +" "+Month+ " " + "de" +" "+Year)
                // End -->

