//*******************************************************************
// Misc JavaScript Class Def. & Variable Declaration.
//								// (c) 2000-2008 Kappa Solutions Ltd.
//*******************************************************************
//
// Modifed Date Class Constructor. **********************************
function ModifiedDate() {
	// The Modified Date utility class has functions to determine 
	// when a page was last updated.
	this._modifiedDate = new Date(document.lastModified);

}
// get **************************************************************
ModifiedDate.prototype.get = function () {
	var date = null;
	if (!isNaN(this._modifiedDate.valueOf())) {
		date = this._modifiedDate;
	}
	return date;
}
// toLocaleString *********************************************************
ModifiedDate.prototype.toLocaleString = function () {
	var dateString = "";
	var modifiedDate = this.get();
	if (modifiedDate) {
		dateString = modifiedDate.toLocaleString().slice(0, -9);
	}
	return dateString;
	
}
//*******************************************************************
var modDate = new ModifiedDate();
//*******************************************************************
