<!--
// test.js from http://www.bassoon.org/
this_year="2004 "; // now.getYear(); // avoid netscape 4.7 bug
// set up date display
var now = new Date();
var day_of_week = now.getDay();
var day_of_month = now.getDate();
var month = now.getMonth();
var str1 = ""; str = "";
        if (day_of_week == 0) str1 = "Sunday, ";
        if (day_of_week == 1) str1 = "Monday, ";
        if (day_of_week == 2) str1 = "Tuesday, ";
        if (day_of_week == 3) str1 = "Wednesday, ";
        if (day_of_week == 4) str1 = "Thursday, ";
        if (day_of_week == 5) str1 = "Friday, ";
        if (day_of_week == 6) str1 = "Saturday, ";
        if (month == 0)       str = "January "; 
        if (month == 1)       str = "February ";
        if (month == 2)       str = "March ";
        if (month == 3)       str = "April ";
        if (month == 4)       str = "May ";
        if (month == 5)       str = "June ";
        if (month == 6)       str = "July " ;
        if (month == 7)       str = "August ";
        if (month == 8)       str = "September ";
        if (month == 9)       str = "October ";
        if (month == 10)      str = "November ";
        if (month == 11)      str = "December ";
        str1 += str + day_of_month + ", " + this_year; 
//-->