Last updated

This JavaScript shows you the date and time of the last modification of the page.

Place this JavaScript code where you want to show the information:

<SCRIPT LANGUAGE="JavaScript">
<!---------- JavaScript begins...

var LastUpdated = document.lastModified;
document.writeln ("This page was last updated " + LastUpdated);

// JavaScript ends ---------->
</SCRIPT>