
function f(s){
	
		var s2 = '';
		for(var i = 0; i < s.length; i++){
			s2 += String.fromCharCode(s.charCodeAt(i) + 10 );
		}
		document.location.href="mailto:" + s2;
	}

