// JavaScript Document



function SendMail(user, domain, tld) {
  var m = user + '@' + domain + '.' + tld;
  location.href = 'mailto:' + m;
}
