<!--
		// Dit script is gemaakt door Chris Kamps uit Overlangel
		// Bij vragen mailen naar: webmaster@cvgkmw.com
		// Wilt U het gebruiken, stuur dan even een mailtje en dan kunnen we wel iets bespreken.

		var timerID = null;
		var timerRunning = false;

		var iDag			= 15;
		var iMaand		= 7;
		var iJaar			= 2006;
		var iUur			= 18;
		var iMinuut		= 30;
		var iSeconde	= 0;

		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 = DisplayCount(iAantalDagen,"dag","dagen");
				sAantalUren = DisplayCount(iAantalUren,"uur","uren");
				sAantalMinuten = DisplayCount(iAantalMinuten,"minuut","minuten");
				sAantalSeconden = DisplayCount(iAantalSeconden,"seconde","seconden");

				sText = "Nog " + sAantalDagen + ", " + sAantalUren + ", " + sAantalMinuten + ", " + sAantalSeconden + "<BR></B> ";

				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();
		}
//-->			