function generateMailto (name, host, tld)
{
   mailadress = name + '@' + host + '.' + tld
   location.href = "mailto:" + mailadress;
}
