/************
Time and Date
************/
now = new Date()
if(0 == now.getDay())
	today = "Sunday, "
else if(1 == now.getDay())
	today = "Monday, "
else if(2 == now.getDay())
	today = "Tuesday, "
else if(3 == now.getDay())
	today = "Wednesday, "
else if(4 == now.getDay())
	today = "Thursday, "
else if(5 == now.getDay())
	today = "Friday, "
else if(6 == now.getDay())
	today = "Saturday, "

now = new Date()
if(0 == now.getMonth())
	today = today + "January "
else if(1 == now.getMonth())
	today = today + "Febuary "
else if(2 == now.getMonth())
	today = today + "March "
else if(3 == now.getMonth())
	today = today + "April "
else if(4 == now.getMonth())
	today = today + "May "
else if(5 == now.getMonth())
	today = today + "June "
else if(6 == now.getMonth())
	today = today + "July "
else if(7 == now.getMonth())
	today = today + "August "
else if(8 == now.getMonth())
	today = today + "September "
else if(9 == now.getMonth())
	today = today + "October "
else if(10 == now.getMonth())
	today = today + "November "
else if(11 == now.getMonth())
	today = today + "December "
	
now = new Date()
year = now.getYear()
if (year < 2000)
	year = year + 1900

now = new Date()
today = today + now.getDate() + ", " + year

lastMod = document.lastModified