 /* 
 Cryptage - Chiffrement par décalage
 */

	var Key = 24;


 function Decrypt( ChaineCrypte )
 {

	if(ChaineCrypte.length == 0) return ; 
 	var Resultat="";
 	for(var i=0;i<ChaineCrypte.length;i++)
 	{ 	
 	
 	Resultat=Resultat.concat(String.fromCharCode(ChaineCrypte.charCodeAt(i)+Key));    
 	}
 	return Resultat;

 }