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