calendar = new Date();
day = calendar.getDay();
month = calendar.getMonth();
date = calendar.getDate();
year = calendar.getYear();
document.write("<font class=norm_text>");
var dayname = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
var monthname = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" );
document.write(dayname[day] + "</b>,<b> ");
document.write(monthname[month] + " ");
if (date < 10) document.write("0" + date + "</b>,<b> ");
else
document.write(date + "</b>,<b> ");
if (year < 100)	document.write("19" + year + " &nbsp;&nbsp;&nbsp;");
else
if (year > 1999) document.write(year + " &nbsp;&nbsp;&nbsp;");
document.write("<font color=ff0000>");

if ((month == 0) && (date == 1)) document.write("Happy New Year!");
if ((month == 0) && (day == 1) && (date > 14) && (date < 23)) document.write("Martin Luther King's Birthday");
if ((month == 1) && (date == 14)) document.write("Valentine's Day");
if ((month == 3) && (day == 0) && (date > 0) && (date < 8)) document.write("Daylight Savings Time Begins");
if ((month == 8) && (day == 1) && (date > 0) && (date < 8)) document.write("Labor Day");
if ((month == 9) && (day == 0) && (date > 24) && (date < 31)) document.write("Daylight Savings Time Ends");
if ((month == 9) && (day == 0) && (date == 31)) document.write("Daylight Savings Time Ends<BR>");
if ((month == 9) && (date == 1)) document.write("Independence Day");
if ((month == 11) && (date == 24)) document.write("Christmas Eve");
if ((month == 11) && (date == 25)) document.write("Merry Christmas");
if ((month == 11) && (date == 31)) document.write("New Year's Eve");