function mail(at) {
var atMail = at.split("(at)");
atMail = "mailto:" + atMail.join("@");
location.href = atMail;
}