// slight obsficated anti-spam function
function reveal(name) {
  id = document.getElementById(name);
  id.onclick = "";

  name = name+"@";
  val = name+"haxbymemorialhall";
  id.innerHTML = val+".org";
  val = "to:"+val;
  id.href = "mail"+val+".org";

  return false;
}
