<!--

/*
Last Modified Date script (by Candy)
For this and 100's more scripts, visit http://javascriptkit.com
*/

var dayArray = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var monthArray = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var lastUpdate = new Date(document.lastModified);
var modifiedyear=lastUpdate.getYear()
if (modifiedyear<1000)
modifiedyear+=1900
document.write("Updated ");
document.write(lastUpdate.getMonth()+1 + '/' + lastUpdate.getDate() + '/' + modifiedyear+ ' '+ lastUpdate.getHours()+':'+lastUpdate.getMinutes()+':'+lastUpdate.getSeconds())
//-->
