<!-- Hide me from old browsers
var months = new Array
        (
         "January","February","March","April","May","June",
         "July","August","September","October","November","December"
        );
        update=new Date(document.lastModified);
        theMonth = months[update.getMonth()];
        theDate = update.getDate();
        theYear = update.getYear();
        if (theYear > 99 && theYear < 200)
          theYear += 1900;
        else if (theYear < 100)
          theYear += 2000;
        //if
function Update(backCol,textCol)
{
  var st;
  var sx;
  st='<TABLE ALIGN=\"center\" border=\"0\" bgcolor=\"';
  st+=(backCol)?backCol:'#808080';
  st+='\" cellpadding=\"0\" cellspacing=\"0\">';
  this.document.writeln(st);
  this.document.writeln('<tr>');
  sx='<font face=\"verdana, arial, serif\" color=\"';
  sx+=(textCol)?textCol:'#FFFF00';
  sx+='\" size=\"1\">';
  this.document.writeln('<td>'+sx+'Last update: '+theMonth+' '+theDate+', '+theYear+ '</font></td>');
  this.document.writeln('</tr>');
  this.document.writeln('</table>');
}

// End Hiding-->









