function initArray() {
	this.length = initArray.arguments.length
	for (var i=0;i<this.length;i++)
		this[i+1] = initArray.arguments[i]
}
var MOYArray = new initArray("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
var LastModDate = new Date(document.lastModified);
document.write("<small>Last updated on: ");
document.write(LastModDate.getDate(),"-");
document.write(MOYArray[(LastModDate.getMonth()+1)],"-");
document.write(LastModDate.getFullYear());