/* This prints the last modified date and time of a file
Created by: Thomas Jobe :: http://wotw.9k.com/index.html/ */

function modDate() {
var defaultDate = "01/03/2011";
var lm = document.lastModified

if (Date.parse(lm) == 0) {
lm = defaultDate
}
document.write("Last Modified: " + lm)
}
