<!--
		var timerID = null;
		var timerRunning = false;

		function ShowTime(){
			sText = "";

			dDateNow = new Date();
			dDatePast = new Date(iJaar,(iMaand-1),iDag,iUur,iMinuut,iSeconde);

			if((dDatePast - dDateNow) >= 0){
				iDifference = parseInt((dDatePast - dDateNow) / 1000);

				iAantalDagen = ((iDifference - (iDifference % (60*60*24))) / (60*60*24))
				iDifference -= (iAantalDagen * (60*60*24));

				iAantalUren = ((iDifference - (iDifference % (60*60))) / (60*60))
				iDifference -= (iAantalUren * (60*60));

				iAantalMinuten = ((iDifference - (iDifference % (60))) / (60))
				iDifference -= (iAantalMinuten * (60));

				iAantalSeconden = iDifference;
				
				sAantalDagen = "";
				sAantalUren = "";
				sAantalMinuten = "";
				sAantalSeconden = "";

				if(iAantalDagen > 0) sAantalDagen = DisplayCount(iAantalDagen,"dag","dagen") + ", ";
				sAantalUren = DisplayCount(iAantalUren,"uur","uren");
				sAantalMinuten = DisplayCount(iAantalMinuten,"minuut","minuten");
				sAantalSeconden = DisplayCount(iAantalSeconden,"seconde","seconden");

				sText = sTextBefore + "Nog " + sAantalDagen + sAantalUren + ", " + sAantalMinuten + ", " + sAantalSeconden + sTextAfter;

				document.getElementById("divTimeLine").innerHTML = sText;

				timerID = setTimeout("ShowTime()",250);
				timerRunning = true;
			}
		}

		function DisplayCount(iAantal,iNaam1,iNaamMeer)
		{
			sNaam = "";
			if(iAantal==1){
				sNaam = iAantal + " " + iNaam1;
			} else{
				sNaam = iAantal + " " + iNaamMeer;
			}
			return(sNaam);
		}

		function StopClock () 
		{
			if(timerRunning) clearTimeout(timerID);
			timerRunning = false;
		}

		function StartClock () 
		{
			StopClock();
			ShowTime();
		}
//-->			
