  WeekDays = new Array(7)
    WeekDays[0] = "Sunday"
    WeekDays[1] = "Monday"
    WeekDays[2] = "Tuesday"
    WeekDays[3] = "Wednesday"
    WeekDays[4] = "Thursday"
    WeekDays[5] = "Friday"
    WeekDays[6] = "Saturday"

  Months = new Array(12)
    Months[0] = "January"
    Months[1] = "February"
    Months[2] = "March"
    Months[3] = "April"
    Months[4] = "May"
    Months[5] = "June"
    Months[6] = "July"
    Months[7] = "August"
    Months[8] = "September"
    Months[9] = "October"
    Months[10] = "November"
    Months[11] = "December"

  function Today() {
    now = new Date();
//    document.write('<FONT FACE="Arial, Helvetica" COLOR="#000000" size="-1">');
//    document.write('Today: ');
//    document.write('<STRONG><FONT FACE="Arial, Helvetica" COLOR="#CC0000" size="-1">');
	document.write('<span style="font-weight:bold;color:#cc0000;">');
    document.write(WeekDays[now.getDay()],"&nbsp;");
    document.write(Months[now.getMonth()],"&nbsp;");

    if ((now.getDate() == 1) || (now.getDate() == 21) || (now.getDate() == 31)){
      document.write(now.getDate(),'<sup>st</sup>');
      }
    else if ((now.getDate() == 2) || (now.getDate() == 22)) {
      document.write(now.getDate(),'<sup>nd</sup>');
      }
    else if ((now.getDate() == 3) || (now.getDate() == 23)) {
      document.write(now.getDate(),'<sup>rd</sup>');
      }
    else {
      document.write(now.getDate(),'<sup>th</sup>');
      }

//	document.write('</font></FONT></strong>');
	document.write('</span>');
    }