// Last Updated Calculator and Display
<!--
function initArray() {
this.length = initArray.arguments.length
for (var i = 0; i < this.length; i++)
this[i+1] = initArray.arguments[i]
}
      
//Build the month array      
var MonthOfYearArray = new initArray("January","February","March","April",
                                     "May","June","July","August",
                                     "September","October","November","December");

//Determine the date the document was last modified      
var LastModifiedDate = new Date(document.lastModified);
//can also use var LastModifiedDate = new Date(document.fileModifiedDate);

//Delect the correct month from the array      
document.write(MonthOfYearArray[(LastModifiedDate.getMonth()+1)]," ");
//Display the complete date
document.write(LastModifiedDate.getDate()+0,", ",(LastModifiedDate.getFullYear()+0));

// -->
