<!-- Begin
var days = new Array();
var msgs = new Array();

days[0] = "February 23, 2011";  // day of the month to display message
msgs[0] = "Saturday, February 26, 2011";  // date displayed in message

days[1] = "February 24, 2011";
msgs[1] = "Saturday, February 26, 2011";

days[2] = "February 25, 2011";
msgs[2] = "Saturday, February 26, 2011";

days[3] = "February 26, 2011";
msgs[3] = "Saturday, February 26, 2011";



var months = new Array("",
"January", "February", "March", "April", "May", "June",
"July", "August", "September", "October", "November", "December"
);

var today = new Date(); // today
var mon = months[today.getMonth() + 1]; // month
var day = today.getDate(); // day
var year = y2k(today.getYear()); // year

function dateMsg() {
for (i = 0; i < days.length; i++) {
tempdate = new Date(days[i]);
tempmonth = months[tempdate.getMonth() + 1];
tempday = tempdate.getDate();
tempyear = y2k(tempdate.getYear());
if (year == tempyear && mon == tempmonth && day == tempday)
return("<tr><td width=\"10\" colspan=\"2\"><img src=\"/images/spacer.gif\" width=\"10\" height=\"5\" alt=\"\" /></td></tr><tr><td width=\"10\"><img src=\"/images/spacer.gif\" width=\"10\" height=\"5\" alt=\"\" /></td><td class=\"important\"><p class=\"note\"><b>NOTE\: Due to system maintenance, this website will be periodically disrupted on " + msgs[i]) + ".</b></p></td></tr>"; // returns day message
   }
return(" "); // returns default
}

// Y2K Fix Function
function y2k(year) {
if (year < 2000)
year = year + 1900;
return year;
}

document.write(dateMsg());

//  End -->
