<!--
document.write("<font size='-2' color='#333333' face='arial'>");
   //This is a little automated LAST MODIFIED script that you can stick at the
   //bottom of your pages and forget about updating it.
   //Hacked together by Stephen King and James Wright: 03/22/96
   //It even works for the year 2000 and up!!
   function initArray() {  // Thanks JavaScript Mailing List for this function
      this.length = initArray.arguments.length
      for (var i = 0; i < this.length; i++)
      this[i+1] = initArray.arguments[i]
   }
   var DOWArray = new initArray("Sunday","Monday","Tuesday","Wednesday",
                                "Thursday","Friday","Saturday");
   var MOYArray = new initArray("January","February","March","April",
                                "May","June","July","August","September",
                                "October","November","December");
   var LastModDate = new Date(document.lastModified);
   document.write("Last updated on ");
//   document.write(DOWArray[(LastModDate.getDay()+1)],", ");
   document.write(MOYArray[(LastModDate.getMonth()+1)]," ");
   document.write(LastModDate.getDate(),", ",(LastModDate.getYear()));
document.write("</font>");
-->

