function sendMailTo(name, company, domain) {
  locationstring = 'mai' + 'lto:' + name + '@' + company + '.' + domain;
  window.location.replace(locationstring);
}

function smto(domain1, domain2, user1,user2,tld) {
  locationstring = 'm' + 'ai' + 'l' + 't' + '' + 'o' + ':' + user1 + user2 + '@' + domain1 + domain2 + '.' + tld;
  window.location.replace(locationstring);
}

function mto(domain1,domain2,user1,user2,tld){
  window.location.href="m"+"ai"+"l"+"t"+""+"o"+":"+user1+user2+"@"+domain1+domain2+"."+tld;
}