function cdown(year, month, day, hour, minute, event) {
	lblday							=	"jour";
	lblhour						=	"heure";
	lblmin							=	"minute";
	lblsec							=	"seconde";                 
	
	Today 						= 	new Date();
	Todays_Year 			= 	Today.getFullYear();
	Todays_Month 		= 	Today.getMonth();

	Todays_Date 			= (new Date(Todays_Year, Todays_Month, Today.getDate(), Today.getHours(), Today.getMinutes(), Today.getSeconds())).getTime();                                 
	Target_Date 			= (new Date(year, month - 1, day, hour, minute, 00)).getTime();                  

	Time_Left = Math.round((Target_Date - Todays_Date) / 1000);
	
	if(Time_Left >= 0)  { 
		days = Math.floor(Time_Left / (60 * 60 * 24));
	
		Time_Left 			%= (60 * 60 * 24);
		hours 					= 	Math.floor(Time_Left / (60 * 60));
		Time_Left 			%= (60 * 60);
		minutes 				= 	Math.floor(Time_Left / 60);
		Time_Left 			%= 60;
		seconds 				= 	Time_Left;
		
		document.getElementById("cd_day").innerHTML 	= days;
		document.getElementById("cd_hour").innerHTML = hours;
		document.getElementById("cd_min").innerHTML 	= minutes;
		document.getElementById("cd_sec").innerHTML 	= seconds;
	
		if (days > 1) 			{ lblday		=	lblday 	+ 	"s";}
		if (hours > 1) 			{ lblhour  	=	lblhour 	+ 	"s";}
		if (minutes > 1)  	{ lblmin		=	lblmin	+	"s";}
		if (seconds > 1)  	{ lblsec		=	lblsec	+	"s";}
	
		document.getElementById("lb_day").innerHTML 	= lblday;
		document.getElementById("lb_hour").innerHTML = lblhour;
		document.getElementById("lb_min").innerHTML 	= lblmin;
		document.getElementById("lb_sec").innerHTML 	= lblsec;

		document.getElementById("lb_avant").innerHTML 		= " avant ";
		document.getElementById("lb_encore").innerHTML 	= " Encore ";
		document.getElementById("lb_event").innerHTML 		= event;		

		//Recursive call, keeps the clock ticking.
		setTimeout('cdown(' + year + ',' + month + ',' + day + ',' + hour + ',' + minute + ',"' +event +'");', 1000);
	}
}

