//  display last modification date in English format

 var ldays = new Array(7);
   ldays[0] = "Sunday";
   ldays[1] = "Monday";
   ldays[2] = "Tuesday";
   ldays[3] = "Wednesday";
   ldays[4] = "Thursday";
   ldays[5] = "Friday";
   ldays[6] = "Saturday";
 var lmonths = new Array(12);
   lmonths[0] = "January";
   lmonths[1] = "February";
   lmonths[2] = "March";
   lmonths[3] = "April";
   lmonths[4] = "May";
   lmonths[5] = "June";
   lmonths[6] = "July";
   lmonths[7] = "August";
   lmonths[8] = "September";
   lmonths[9] = "October";
   lmonths[10] = "November";
   lmonths[11] = "December";
 var dateObj = new Date(document.lastModified)
 var lastday = ldays[dateObj.getDay()]
 var lastmonth = lmonths[dateObj.getMonth()]
 var lastdate = dateObj.getDate()
 var lastyear = dateObj.getYear()
 if (lastyear < 2000)
 {
   lastyear = lastyear + 2000;
 }
 if (lastyear >= 2100)
 {
   lastyear = lastyear - 100;
 }
 document.write('<FONT FACE=ARIAL SIZE=1>Last Modified: ' + lastday + ', ' + lastmonth + ' ' + lastdate + ', ' + lastyear + '<BR></FONT>');

//  To use this script, put the code:
//  <SCRIPT LANGUAGE="JavaScript" SRC="lastmodified.js"></SCRIPT>
//  in your target page, exactly where you want the last modified date to go.