   function mail(name, domain)   {      var address = name + '@' + domain;      window.location = 'mailto:' + address;   }  
