// RiS WebTeam BPL Year clock 01/06/97 
<!--
	today = new Date();
	enday = new Date("November, 21, 2010 00:00");
	enday.setYear("2010");
	PerDay = 24 * 60 * 60 * 1000;
	
	/* Days */
	daysLeft = ((enday.getTime() - today.getTime()) / PerDay +1);
	daysLeft = daysLeft - 0.5;
	daysRound = Math.round(daysLeft);
	daysRemain = daysRound;

	if (daysRemain > 1)
		document.write(daysRemain + " Days to the Race");
        else if (daysRemain == 1)
		document.write(daysRemain + " Day to go...");
        else if (daysRemain == 0)
		document.write("Today's Race Day!!");
	else
		document.write("There's always next year.");
//-->