function scode(s) {

var m ="";
for(var i=0;i<s.length;i++)
{
var teil1 = s.substring(i, i+2);
var teil2 = teil1.substr(0,1)
var teil3 = teil1.substr(1,1)
if (teil2 == "a") teil2 = 10;
if (teil2 == "b") teil2 = 11;
if (teil2 == "c") teil2 = 12;
if (teil2 == "d") teil2 = 13;
if (teil2 == "e") teil2 = 14;
if (teil2 == "f") teil2 = 15;
if (teil3 == "a") teil3 = 10;
if (teil3 == "b") teil3 = 11;
if (teil3 == "c") teil3 = 12;
if (teil3 == "d") teil3 = 13;
if (teil3 == "e") teil3 = 14;
if (teil3 == "f") teil3 = 15;
var buchst = teil2*16+teil3*1;
m += String.fromCharCode(buchst);
i++;
}

location.href = "mailto:" + m;
}
