//<script language="JavaScript">
<!-- 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] = "Jan";
                selectMonth[1] = "Feb";
                selectMonth[2] = "Mar";
                selectMonth[3] = "Apr";
                selectMonth[4] = "May";
                selectMonth[5] = "Jun";
                selectMonth[6] = "Jul";
                selectMonth[7] = "Au";
                selectMonth[8] = "Sep";
                selectMonth[9] = "Oct";
                selectMonth[10] = "Nov";
                selectMonth[11] = "Dec";

        if(s_date.getDay() == 1){
                weekDay = "Mon";
        }
        if(s_date.getDay() == 2){
                weekDay = "Tue";
        }
        if(s_date.getDay() == 3){
                weekDay = "Wed";
        }
        if(s_date.getDay() == 4){
                weekDay = "Thu";
        }
        if(s_date.getDay() == 5){
                weekDay = "Fri";
        }
        if(s_date.getDay() == 6){
                weekDay = "Sat";
        }
        if(s_date.getDay() == 7){
                weekDay = "Sun";
        }
        if(s_date.getDay() == 0){
                weekDay = "Sun";
        }


        var setYear = s_date.getYear();

 var BName = navigator.appName;

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

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

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

// -->

//</script>


