function decrypte(s) {
	var res = '', code=0;
	for(i=0; i<s.length; i++) {
	 code = s.charCodeAt(i);
	 res += String.fromCharCode(code-2);
	}
	return res;
}

function crypte(s) {
	var res = '', code=0;
	for(i=0; i<s.length; i++) {
	 code = s.charCodeAt(i);
	 res += String.fromCharCode(code+2);
	}
	return res;
}

