// JavaScript Document
<!-- 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] = "JANUARY";
                selectMonth[1] = "FEBRUARY";
                selectMonth[2] = "MARCH";
                selectMonth[3] = "APRIL";
                selectMonth[4] = "MAY";
                selectMonth[5] = "JUNE";
                selectMonth[6] = "JULY";
                selectMonth[7] = "AUGUST";
                selectMonth[8] = "SEPTEMBER";
                selectMonth[9] = "OCTOBER";
                selectMonth[10] = "NOVEMBER";
                selectMonth[11] = "DECEMBER";

        if(s_date.getDay() == 1){
                weekDay = "MONDAY";
        }
        if(s_date.getDay() == 2){
                weekDay = "TUESDAY";
        }
        if(s_date.getDay() == 3){
                weekDay = "WEDNESDAY";
        }
        if(s_date.getDay() == 4){
                weekDay = "THURSDAY";
        }
        if(s_date.getDay() == 5){
                weekDay = "FRIDAY";
        }
        if(s_date.getDay() == 6){
                weekDay = "SATURDAY";
        }
        if(s_date.getDay() == 7){
                weekDay = "SUNDAY";
        }
        if(s_date.getDay() == 0){
                weekDay = "SUNDAY";
        }


        var setYear = s_date.getYear();

 var BName = navigator.appName;

 if(BName == "Netscape"){
         var setYear = s_date.getYear() + 1900;
}

document.write(weekDay + ", " + selectMonth[s_date.getMonth()] + " " +
s_date.getDate() + ", " + setYear);

// -->
