// Fonction pour faire clignoter un texte
var elementTxt; 
var estAffiche; 
setInterval("Clignoter()", 1000); 

	// pour faire clignoter le texte 
	function Init() 
	{ 
	   elementTxt1 = document.getElementById("txtClignotant1"); 
	   estAffiche = true; 
	} 
 
	function Clignoter() 
	{ 
	   if (estAffiche == true) 
	   { 
	      elementTxt1.style.display = "none"; 
	      estAffiche = false; 
	   } 
	   else 
	   { 
	      elementTxt1.style.display = "inline"; 
	      estAffiche = true; 
	   } 
	} 
