mailcrypt = function(adress) {
	longueur = adress.length / 3;
	var extrait = new String('');
	for (i=0 ; i < longueur; i++) {
		extrait = extrait + String.fromCharCode(adress.substring(3*i,(i+1)*3));
	}
	location.href='mailto:'+extrait;
}