function LastUpdate()
{
var Months = new Array( "Jan", "Feb", "Mar", "Apr", "May", "June", "July", "Aug","Sep", "Oct", "Nov", "Dec");                //Month Names array

var Updated = new Date(document.lastModified);   //last modified date
var mName   = Months[Updated.getMonth()];        //name of the month
var d       = Updated.getDate();                 //date
var y       = Updated.getFullYear();             //year
//The Last Updated Statement
var UpdateText="This page was last updated" + " " + " " + mName + " " +  d + ", " + y;      
return UpdateText
}

