function mail(name, domain) {
    var sendmail = 'mailto:' + name + '@' + domain;
    window.location.href = sendmail;
}