<!-- Paste this code into an external JavaScript file named: modDate.js  -->/* This script and many more are available free online atThe JavaScript Source :: http://javascript.internet.comCreated by: Thomas Jobe :: http://wotw.9k.com/index.html/ */function modDate() {var defaultDate = "01/10/2006";var lm = document.lastModifiedif (Date.parse(lm) == 0) {lm = defaultDate}document.write("Last updated and made even better on: " + lm)}