//
// JavaScript to write the last date a HTML document was updated
// Author: Tom Konowalchuk
// Date:   11-12-2000

// Usage:  Add the following lines of code to your page to enable the update
//         component.
//
//
//         <!-- THIS LINE LOADS THE JS LIBRARY FOR THE Date of HTML update  -->
//
//         <SCRIPT LANGUAGE="JavaScript" SRC="/www/bridgelaw/functions/lastupdate.js"></SCRIPT>

updatea=new Date(document.lastModified);
theMontha=updatea.getMonth()+1;
theDatea=updatea.getDate();
theYeara=updatea.getYear();
//theYeara="08";
theAnswer="11"+theYeara;
lastAnswer=theAnswer.substring(3)
document.open();
//document.writeln("Last Updated:"+ lastAnswer);
document.writeln("Last Updated:"+theMontha+"/"+theDatea+"/"+lastAnswer);
document.close();
