function sendmail(user,host,tld) {
  window.alert("L'adresse email est : "+user+"@"+host+"."+tld);
  window.location.href = "mailto:"+user+"@"+host+"."+tld;
}