var sitio = 'fusteralonso.com';

function cambiamail (buzon) {
var res = "";
for (var n = 0; n < buzon.length; n++)
res += String.fromCharCode(buzon.charCodeAt(n));
if (res.indexOf('@') < 0)
res = res + '@' + sitio;
location = "mail" + "to:" + res;
}

function cambiamail2 (buzon) {
var res = "";
for (var n = 0; n < buzon.length; n++)
res += String.fromCharCode(buzon.charCodeAt(n));
if (res.indexOf('@') < 0)
res = res + '@' + 'csnet.es?subject=Mensaje desde la web ' + sitio;
location = "mail" + "to:" + res;
}
