<!--
       var DayOfWeek = new Array('SUN.','MON.','TUES.','WED.','THUR.','FRI.','SAT.');
       var MonthName = new Array('JANUARY','FEBRUARY','MARCH','APRIL','MAY','JUNE','JULY','AUGUST','SEPTEMBER',
                          'OCTOBER','NOVEMBER','DECEMBER');
       var theDate = new Date();

       document.write(DayOfWeek[theDate.getDay()] + ' ' + MonthName[theDate.getMonth()] + ' ' +
               theDate.getDate() + ', ' + (theDate.getYear() < 100 ? theDate.getYear() + 1900 : theDate.getYear()));
        //-->