 var i, max=4, chrono;

 // === Fermeture ================================================================================================================================== //
 function closing()
 {
   document.getElementById("bubble").style.display = 'none';
 }

 // === Clignotement =============================================================================================================================== //
 function flickering()
 {
   document.getElementById("bubble").style.display=(document.getElementById("bubble").style.display=="block")?"none":"block";
   i++;
   if (i==max*2)
   {
     clearInterval(chrono);
   }
 }

 // === Infobulle ================================================================================================================================== //
 function opening()
 {
   i = 0;
   chrono = setInterval("flickering()", "85");
 }

 setTimeout('opening()',1800);
 setTimeout('closing()',6000);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

