// JavaScript to generate a "last modified" message
// Modified from: http://www.bioinf.org.uk/software/
lastmod = document.lastModified;
if(lastmod.length == 31) {lastmod = lastmod.substr(0,27);}
lastmodmsec = Date.parse(lastmod);
if(lastmodmsec != 0)
{
   lastmoddate = new Date();
   lastmoddate.setTime(lastmodmsec);
   year=lastmoddate.getYear();
   // Some MIE versions give a 2 digit year. Other versions of MIE
   // and older Netscapes give a 4 digit year while Netscape 4.70 gives
   // years since 1900 (i.e. 2000 ==> 100) !!!!
   if(year < 80) {year += 2000;}
   else
   {
      if(year < 1900) {year += 1900;}
   }
   m = lastmoddate.getMonth() + 1;
   if(m < 10) s1 = "-0"; else s1 = "-";
   d = lastmoddate.getDate();
   if(d < 10) s2 = "-0"; else s2 = "-";
   document.writeln(year,s1,m,s2,d);
}



