function dateage()
{
  // modified by DFM on 29 Jan 2001 from a routine found at http://www.iboost.com
  var created=new Date(document.lastModified);
  var now=new Date();
  document.write("Updated "+created.toString());
  msPerDay=24*60*60*1000;
  timeLeft=(now.getTime()-created.getTime());
  e_daysLeft=timeLeft/msPerDay;
  daysLeft=Math.floor(e_daysLeft);
  e_hrsLeft=(e_daysLeft-daysLeft)*24;
  hrsLeft=Math.floor(e_hrsLeft);
  minsLeft=Math.floor((e_hrsLeft-hrsLeft)*60);
  document.write("<br>Age: "+daysLeft+"d "+hrsLeft+"h "+minsLeft+"m");
}

function docdate()
{
  var created=new Date(document.lastModified);
  document.write(created.toLocaleString());
}

