//An automated LAST MODIFIED script that you can stick at the 
//bottom of your pages and forget about updating it. 
//By Stephen King and James Wright: 03/22/96. 
// Modified 01/11/2000 

function initArray() { 
	this.length = initArray.arguments.length 
	for (var i = 0; i < this.length; i++) 
		this[i+1] = initArray.arguments[i] 
} 

function getCorrectedYear(year){ 

	if(year<70) return (2000+year); 
	if(year<1900) return (1900+year); 
	return year; 
} 

var MOYArray = new 
initArray("January","February","March","April","May","June","July","August","September","October","November","December"); 

var LastModDate = new Date(document.lastModified); 
var num = LastModDate.getYear(); 
var year = getCorrectedYear(num);
 
document.write("Last updated on "); 

document.write(MOYArray[(LastModDate.getMonth()+1)]," "); 

document.write(LastModDate.getDate(),", ",year); 

document.write(".");
