
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source http://javascript.internet.com -->

<!-- Begin

var Months = new Array(13); 
    Months[1]  = "January";
    Months[2]  = "February";
    Months[3]  = "March";
    Months[4]  = "April";
    Months[5]  = "May";
    Months[6]  = "June";
    Months[7]  = "July";
    Months[8]  = "August";
    Months[9]  = "September";
    Months[10] = "October";
    Months[11] = "November";
    Months[12] = "December";
var DateObj = new Date(document.lastModified);
var lmonth  = Months[DateObj.getMonth() + 1];
var date    = DateObj.getDate();
var fyear   = DateObj.getYear();
if ( fyear < 2000 ) 
  fyear = fyear + 1900;
document.write(date + " " + lmonth + ", " + fyear);
// End -->

