//Usage:  <SCRIPT SRC="/Tools/Last_Update.js"></SCRIPT>
update= new Date(document.lastModified)
theMonth=update.getMonth() + 1
theDate=update.getDate()
theYear=update.getYear()
updTime=theDate +'/' + theMonth +'/' + theYear;
document.write(updTime);
