// tarvitsee noini.net :: mailToCrypter:n toimiakseen

function UnCryptMail(t){
	var ret = "";
	
	for(var i = 0; i < t.length; i++){
		ret += String.fromCharCode(t.charCodeAt(i)+(1));
	}
	return ret;
}

function MailToLink(t)	{	
	// "debug"
	// document.getElementById("testi").innerHTML="mailto:"+UnCryptMail(t);
	location.href="mailto:"+UnCryptMail(t);
}