function HowManyDays()
{
	var Today = new Date();
	var TrD = 86400000;
	var Days = Math.ceil((Date.parse("Aug 11, 1999") - Today.getTime()) / TrD);
	if (Days > 1)
		document.write(Days, " days to the eclipse on Aug. 11, 1999");
	else if (Days == 1)
		document.write("The eclipse will occur tommorrow on Aug. 11, 1999");
	else if (Days == 0)
		document.write("Today, Aug. 11, the eclipse occurs.");
	else if (Days > -2)
		document.write("The eclipse is over.");
	else
		document.write("The eclipse is over. Next eclipse will be seen on June 21,2001 in Africa.");
	document.write("<br><br>");
}
