<!--

// Get Current Date & Time
var today = new Date();
var the_day_of_week = today.getDay();
var the_day = today.getDate();
var the_month = today.getMonth();

// Ensure 4-digit year in Netscape, "Y2K Compliance," etc.
function y2k(number)
{
 return (number < 1000) ? number + 1900 : number;
}

var the_year = y2k(today.getYear());

// var rightnow = new Time();
var the_hour = today.getHours();
var the_minute = today.getMinutes();

// add 1 to "system day of week" and convert to word
the_day_of_week = parseInt(the_day_of_week);
the_day_of_week = the_day_of_week + 1;

var word_day_of_week = new String;
word_day_of_week = "Day";
if (the_day_of_week == 1)
          word_day_of_week = "Sunday";
else if (the_day_of_week == 2)
          word_day_of_week = "Monday";
else if (the_day_of_week == 3)
          word_day_of_week = "Tuesday";
else if (the_day_of_week == 4)
          word_day_of_week = "Wednesday";
else if (the_day_of_week == 5)
          word_day_of_week = "Thursday";
else if (the_day_of_week == 6)
          word_day_of_week = "Friday";
else if (the_day_of_week == 7)
          word_day_of_week = "Saturday";

// add 1 to "system month" and convert to Abbrev.
// var day = new String;
// var year = new String;

the_month = parseInt(the_month);
the_month = the_month + 1;

var word_month = new String;
word_month = "Month";
if (the_month == 1)
          word_month = "January";
else if (the_month == 2)
          word_month = "February";
else if (the_month == 3)
          word_month = "March";
else if (the_month == 4)
          word_month = "April";
else if (the_month == 5)
          word_month = "May";
else if (the_month == 6)
          word_month = "June";
else if (the_month == 7)
          word_month = "July";
else if (the_month == 8)
          word_month = "August";
else if (the_month == 9)
          word_month = "September";
else if (the_month == 10)
          word_month = "October";
else if (the_month == 11)
          word_month = "November";
else if (the_month == 12)
          word_month = "December";

// Convert Time (AM/PM, etc.)
var hour = new String;
var minute = new String;
var am_pm = new String;

hour = "00";
minute = "00";
am_pm = "AM/PM";

if (the_hour == 0)
     {hour = "12";
      am_pm = "AM";}
else if ((the_hour > 0) && (the_hour <= 11))
     {hour = the_hour;
      am_pm = "AM";}
else if (the_hour == 12)
     {hour = the_hour;
      am_pm = "PM";}
else if ((the_hour > 12) && (the_hour <= 23))
     {the_hour = the_hour - 12;
      hour = the_hour;
      am_pm = "PM";};

// Ensure 2-character minutes
if ((the_minute >= 0) && (the_minute <= 9))
      minute = "0" + the_minute;
else minute =  the_minute;
//-->

