// JavaScript Document
var elementTxt; 
var estAffiche; 
setInterval("Clignoter()", 1000); 
 
function Init() 
{ 
   elementTxt = document.getElementById("txtClignotant"); 
   estAffiche = true; 
} 
 
function Clignoter() 
{ 
   if (estAffiche == true) 
   { 
      elementTxt.style.display = "none"; 
      estAffiche = false; 
   } 
   else 
   { 
      elementTxt.style.display = "inline"; 
      estAffiche = true; 
   } 
} 
