window.defaultStatus = "EXPO 2005";

function countDays(d)
{
	today = new Date();
	msPerDay = 24 * 60 * 60 * 1000;
	BigDay = new Date(d)

	timeLeft = (BigDay.getTime() - today.getTime());

	daysLeft = Math.floor(timeLeft / msPerDay) + 1;

	var innerText = '';
	
	if (timeLeft > (msPerDay))
	{
	  innerText += daysLeft;
	}
	if (!innerText) innerText = 0;

	if (innerText < 100) document.write('&nbsp;');
	if (innerText < 10) document.write('&nbsp;');
	document.write(innerText)
} 