var elementTxt; 
var estAffiche; 
setInterval("Clignoter();", 700); 
 
function Init() 
{ 
   elementTxt = document.getElementById("txtClignotant");
   estAffiche = true; 
} 
 
function Clignoter() 
{ 
   if (estAffiche == true) 
   { 
      elementTxt.style.color = "#0054E3"; 
      estAffiche = false; 
   } 
   else 
   { 
      elementTxt.style.color = "white"; 
      estAffiche = true; 
   } 
} 
 
