
// puts together an email address mailto link
// helps avoid having spambots collect your email address

function writeContact(login, domain, theTitle, theText) {
  var e = login + "@" + domain;
  document.write('<a href="mailto:' + e + '" title="' + theTitle + '">' + theText + '</a>');
}
