#fcleft">




This is another one of those little "bug fixes". People had complained to me that, if their server didn't register the page's last update, it would show the bogus date "1969". This script fixes that. Instead of showing a bogus date, this script shows a date that is defined by the user if the last update part of the document is accidentally left blank by the server.
The source..


<script language="Javascript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var default_date = "10/3/98"
var lm = document.lastModified

if (Date.parse(lm) == 0) {
lm = default_date
}

document.write("Last Modified on: " + lm)
//-->
</script>


Color coding..


This is the user-defined date for if the last update part of the document is accidentally left blank by the server