<!-- This figures out what day of the week it is, and the date, and year. -->
<!--
        s_date = new Date();
        var weekDay = "";

        selectMonth = new Array(12);
                selectMonth[0] = "Janeiro";
                selectMonth[1] = "Fevereiro";
                selectMonth[2] = "Marco";
                selectMonth[3] = "Abril";
                selectMonth[4] = "Maio";
                selectMonth[5] = "Junho";
                selectMonth[6] = "Julho";
                selectMonth[7] = "Agosto";
                selectMonth[8] = "Setembro";
                selectMonth[9] = "Outubro";
                selectMonth[10] = "Novembro";
                selectMonth[11] = "Dezembro";

        if(s_date.getDay() == 1){
                weekDay = "Segunda";
        }
        if(s_date.getDay() == 2){
                weekDay = "Terca";
        }
        if(s_date.getDay() == 3){
                weekDay = "Quarta";
        }
        if(s_date.getDay() == 4){
                weekDay = "Quinta";
        }
        if(s_date.getDay() == 5){
                weekDay = "Sexta";
        }
        if(s_date.getDay() == 6){
                weekDay = "Sabado";
        }
        if(s_date.getDay() == 7){
                weekDay = "Domingo";
        }
        if(s_date.getDay() == 0){
                weekDay = "Segunda";
        }


        var setYear = s_date.getYear();

 var BName = navigator.appName;

 if(BName == "Netscape"){
         var setYear = s_date.getYear() + 1900;
}

document.write(weekDay + ", " + s_date.getDate() + " " + selectMonth[s_date.getMonth()] + " de " + setYear);

// -->
