<!--
		function CalcDiff()
		{
			today = new Date();
			enday = new Date("April 18 2024 06:28:45");
			enday.setYear("2024");
			secsPerDay = 1000 ;
			minPerDay = 60 * 1000 ;
			hoursPerDay = 60 * 60 * 1000;
			PerDay = 24 * 60 * 60 * 1000;			
			/*Seconds*/
			secsLeft = (enday.getTime() - today.getTime()) / minPerDay;
			decremain = (enday.getTime() - today.getTime()) / secsPerDay;
			decround = Math.round(decremain);
			decremain = decround + " seconds";
			secsRound = Math.round(secsLeft);
			secsRemain = secsLeft - secsRound;
			secsRemain = (secsRemain < 0) ? secsRemain = 60 - ((secsRound - secsLeft) * 60) : secsRemain = (secsLeft - secsRound) * 60;
			secsRemain = Math.round(secsRemain);
			/*Minutes*/
			minLeft = ((enday.getTime() - today.getTime()) / hoursPerDay);
			minRound = Math.round(minLeft);
			minRemain = minLeft - minRound;
			minRemain = (minRemain < 0) ? minRemain = 60 - ((minRound - minLeft)  * 60) : minRemain = ((minLeft - minRound) * 60);
			minRemain = Math.round(minRemain - 0.495);
			/*Hours*/
			hoursLeft = ((enday.getTime() - today.getTime()) / PerDay);
			hoursRound = Math.round(hoursLeft);
			hoursRemain = hoursLeft - hoursRound;
			hoursRemain = (hoursRemain < 0) ? hoursRemain = 24 - ((hoursRound - hoursLeft)  * 24) : hoursRemain = ((hoursLeft - hoursRound) * 24);
			hoursRemain = Math.round(hoursRemain - 0.5);
			/*Days*/
			daysLeft = ((enday.getTime() - today.getTime()) / PerDay);
			daysLeft = (daysLeft - 0.5);
			daysRound = Math.round(daysLeft);
			daysRemain = daysRound;			
			
			/*Time*/
			timeRemain = daysRemain + " days, " + hoursRemain + " hours, " + minRemain + " minutes, " + secsRemain + " seconds";
			
			setTimeout("CalcDiff()",1000);
			
			if(daysRemain < 0)						
				timeRemain = "Happy 18th Birthday!!";
			
			document.getElementById("countdown").innerHTML = "<div id'countdown'>" + timeRemain + "</div>";
		}
-->