// Décryptage Simple Anti-spam - Yannick.M - v0.01 - 2004

// Clé de codage
var key = new Array('?','c','b','a','d','j','f','g','h','i','e','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z','-','.','_','@','0','1','2','3','4','5','6','9','8','7','6');

// décodage
var tab_code;

function decrypt(code) {

tab_code = code.split('|');

sortie='';

for (var x = 0; x < tab_code.length; x++) {

   sortie +=  'key[tab_code['+x+']]';
   if ( (x+1) < tab_code.length) sortie += '+';
 
}
  
return sortie;

}
