// obscure email links to prevent spammers from easily harvesting them
function sem(email, emailHost, subject, contact) {
  // generate an email link in a way that is hard for spammers to harvest:
  var names=contact.split(" ");
  if (names == "") {
    names=contact;
  }
  var i;
  var titleName=" "+names[0]

  // in case it is a link for multiple people (like bill and sally fubar) add the
  // rest, up to but not including the last name....
  for (i = 1; i < names.length-1; i++) {
    titleName=titleName+" "+names[i]
  }
  if (email == "mixerfam") {
    titleName = " J."
  }
  if (email == "sarahclusman") {
    titleName = " Sarah"
  }
  document.write("<a title=\"Email" + titleName + "\" href=" + "mail" + "to:" + email + "@" + emailHost + "?subject=" + subject + ">" + contact + "<\/a>")
}




// attempt to do the same thing for phone numbers as well.....
function phn(low, mid, high) {
  document.write("("+high+")-"+mid+"-"+low);
}
