 function AfficherFlash(){
  swfobject.embedSWF("flash/ASF" + lang + ".swf", "contenu", "1024", "737,", "9.0.0", "flash/expressInstall.swf", "#336699");
 }

 function Antispam(tableau1, tableau2, subject){
   var courriel = ""; 
   var texte    = "";
   for (i=0;i<tableau1.length;i++)
     courriel+=String.fromCharCode(tableau1[i])
   if (typeof(tableau2) != 'undefined'){
       if (tableau2.length > 0){
           for (i=0;i<tableau2.length;i++)
             texte+=String.fromCharCode(tableau2[i])
	   }
	   else
	      texte = courriel;
   }			  
   else
   	  texte = courriel;
   if (typeof(tableau2) == 'undefined')
       subject = "";
	   
   tableauTexte = texte.split("@");
   if (tableauTexte.length == 2){
   	  texte = tableauTexte[0] + '<span style="display:none;">REMOVE-THIS-FORM-SPAM<' + '/span>&#64;' + tableauTexte[1];
   }   
   document.write('<a href="mailto:a" onclick="this.href = AntiSpamClic(Array(' + tableau1 + '),\'' + subject + '\');">' + texte + '<' + '/a>');   
 }
 function AntiSpamClic(tableau1, subject){ 
   var courriel = ""; 
   for (i=0;i<tableau1.length;i++)
     courriel+=String.fromCharCode(tableau1[i]);	 
   if (subject.length > 0)
   	  courriel+= '?subject=' + subject;
   return 'mai' + 'lto:' + courriel; 
 }   
 
 
 function ChangerLangue(valeur){
     var url = 'setCookie.php?langue=' + encodeURIComponent(valeur);
     
     new Ajax.Request(url, {
       method: 'get',
       onSuccess: function(transport) {
	    window.location = 'index-' + valeur + '.htm';
       }
     });
 }