function sendMailTo(name, domain) {
  var string = 'mai' + 'lto:' + name + '@' + domain;
  window.location.replace(string);
  return false;
}
