
//This is a little automated LAST MODIFIED script that you can stick at the   
//bottom of your pages and forget about updating it.   
//Hacked together by Stephen King and James Wright: 03/22/96   
//It even works for the year 2000 and up!!   
//
//Modified 10/20/00 by Keith Giles to handle differences in date handling
// between IE and NS 4.0+

function initArray() {  
	// Thanks JavaScript Mailing List for this function      
	this.length = initArray.arguments.length      
	for (var i = 0; i < this.length; i++)      
		this[i+1] = initArray.arguments[i]   
	}   
	var DOWArray = new initArray("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");   
	var MOYArray = new initArray("January","February","March","April","May","June","July","August","September","October","November","December");   
	var LastModDate = new Date(document.lastModified);   
	document.write("<CENTER><EM> Document Last Updated: ");   
	document.write(DOWArray[(LastModDate.getDay()+1)],", ");   
	document.write(MOYArray[(LastModDate.getMonth()+1)]," ");  
// Check which browser so we know how to handle the year returned - KGG 10/00
	if (navigator.appName == "Netscape") { 
		document.write(LastModDate.getDate(),", ",(LastModDate.getYear()+1900));   
// Netscape returns the year as a number since 1900, so we add 1900 to it!
		}
	else {
		document.write(LastModDate.getDate(),", ",(LastModDate.getYear()));   	
// IE however returns the actual year!
		}
	document.write(".</EM></CENTER>");

