<!--
// eMail Obfuscator Script 2.1 by Tim Williams - freeware
{
    coded = "otlu@gjki.lx"
    cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890"
    shift=coded.length
    link=""
    for (i=0; i<coded.length; i++){
        if (cipher.indexOf(coded.charAt(i))==-1){
        ltr=coded.charAt(i)
        link+=(ltr)
        }
        else {
            ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length
            link+=(cipher.charAt(ltr))
        }
    }
    if((document.getElementById) && (document.location.href.indexOf("fckeditor.html") == -1)) {
        document.getElementById("affiche_email").innerHTML = '<a href="mailto:'+link+'">'+link+'</a>';
        document.getElementById("affiche_email").style.display='inline'; 
    }
}
//-->
