<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
var months = new Array(12);
months[0] = "January";
months[1] = "February";
months[2] = "March";
months[3] = "April";
months[4] = "May";
months[5] = "June";
months[6] = "July";
months[7] = "August";
months[8] = "September";
months[9] = "October";
months[10] = "November";
months[11] = "December";
var dateObj = new Date(document.lastModified);
var lmonth = months[dateObj.getMonth()];
var date = dateObj.getDate();
var fyear = dateObj.getYear();
if (fyear < 2000) fyear = fyear + 1900;
document.write("This page last updated on " + lmonth + " " + date + ", " + fyear + ".");
