today = new Date()
TargetDay = new Date("October 14, 2001")
msPerDay = 24 * 60 * 60 * 1000 ;
daysLeft = (TargetDay.getTime() - today.getTime()) / msPerDay;
daysLeft = Math.round(daysLeft);
dayDays = " days "

if (daysLeft == "1") {
	dayDays = " day "
}
if (daysLeft > "0") {
	document.write("<blockquote><p align='center'>" + daysLeft + dayDays + " left until the anniversary of the start of the<br><b>Battle of Hastings</b><br>on October 14 1066</a><br></blockquote>")
}

