<script type="text/JavaScript">
	var Affiche=document.getElementById("countdown");
	function rebour() {
		var $date1 = new Date(0);
		var $date2 = new Date ("Jun 11 17:00:00 2010");
		var $sec = ($date2 - $date1) / 1000;
		var $n = 24 * 3600;
		if ($sec > 0) {
			$j = Math.floor (sec / n);
			$h = Math.floor ((sec - (j * n)) / 3600);
			$mn = Math.floor ((sec - ((j * n + h * 3600))) / 60);
			$sec = Math.floor (sec - ((j * n + h * 3600 + mn * 60)));
			Affiche.innerHTML = "Temps restant : " + j +" j "+ h +" h "+ mn +" min "+ sec + " s ";
			window.status = "Temps restant : " + j +" j "+ h +" h "+ mn +" min "+ sec + " s ";
		}
		tRebour=setTimeout ("rebour();", 1000);
	}
	rebour();
</script>

