// Construct a mailto tag on the fly as an attempt to avoid robots
function AnonymousFunction (name, company, domain) {
  locationstring = 'mai' + 'lto' + ':' + name + '@' + company + '.' + domain;
  window.location.replace (locationstring);
}
