       var DayOfWeek = new Array('Sun.','Mon.','Tue.','Wed.','Thur.','Fri.','Sat.');
       var MonthName = new Array('Jan.','Feb.','Mar.','Apr.','May','Jun.','Jul.','Aug.','Sep.','Oct.','Nov.','Dec.');
       var theDate = new Date();
       document.write('<NOBR>' +
               DayOfWeek[theDate.getDay()] + ' ' +
            MonthName[theDate.getMonth()] + ' ' +
               theDate.getDate() + ', ' +
               (theDate.getYear() < 200 ? theDate.getYear() + 1900 : theDate.getYear()) +
              '</NOBR>');