/* 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/03/2006";
var lm = document.lastModified

if (Date.parse(lm) == 0) {
lm = defaultDate
}
document.write("Last updated: " + lm)
}
