// JavaScript Document

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