/* Script for date modified of page */

update = new Date(document.lastModified);
/*
var dayName = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday", "Saturday");
theDay = update.getDay();
var monthName = new Array("January","February","March","April","May","June","July", "August","September","October","November","December");
theMinutes = update.getMinutes();
theHour = update.getHours();
theMonth = update.getMonth() + 1;
theDate = update.getDate();
theYear = update.getYear();
var dateNow = (theYear + '' + theMonth + '' + theDate + '' + theHour); */

/* document.writeln(dayName[update.getDay()] + ', ' + theDate + ' ' + monthName[update.getMonth()] + ' ' + theYear + ' ' + theHour + ':' + theMinutes); */

document.write(update);


/*
var DatePieces = update.split(" ");
TimeLine = DatePieces[0] + ' ' + DatePieces[1] + " " + DatePieces[2] + " " + DatePieces[3] + " " + DatePieces[4] + " " + DatePieces[6].substring(1,3);

document.write(TimeLine); 
*/


/* end of script */
