sText  = '<p id="styleupdate">';
sText += 'This page updated ';
var mod = new Date (document.lastModified);
sText += mod.getDate();
sText += ' ';
  monthNames = new Array ("January", "February", "March", "April",
                          "May", "June", "July", "August",
                          "September", "October", "November", "December");
sText += monthNames[mod.getMonth()];
sText += ' ';
sText += mod.getFullYear();
sText += '.</p>';
document.write(sText);
