//******************************************************************************
// showmoddate.js
// -------
// Description:
// This Script displays the date the page was last modified
// "Last Modified ddd, d mmm yyyy".						
//
// Directions:
// 1. Insert this script (this file) in the <HEAD> section of the HTML Page.   
//       <script type="text/javascript" src="showmoddate.js"></script>
//  2. Call the function where you want the text to appear
//        <script type="text/javascript">
//      <!--
//         showModDate();
//      //-->
//      </script>
//******************************************************************************
// Modifications:
// 09/04/2003  Chris Filshie
//******************************************************************************
<!-- Begin
//=====================================================
// Show date modified - used in page footers.
//=====================================================
function showModDate() {
var d=new Date(document.lastModified);
var weekday=new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
var monthname=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
document.write("<span>Page last updated: " + weekday[d.getDay()] + ",  " + d.getDate() + "  " + monthname[d.getMonth()] + " " + d.getFullYear() +  ".</span>")
}
// End -->
