// JavaScript Document

<!-- 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 = "March, 2010";
var lm = document.lastModified

if (Date.parse(lm) > 0) {
lm = defaultDate
}
document.write("Last update: " + lm )
}













