// Obscure Email Addresses

// Note the argument ordering!!!
// address is username@hostname1.hostname2
function make_addr(spanid,hostname1,hostname2,username) {
  addrtext = '<a href="mail';
  addrtext += 'to:' + username;
  addrtext += "@";
  addrtext += hostname1;
  addrtext += '.' + hostname2 + '">' + username;
  addrtext += "@";
  addrtext += hostname1;
  addrtext += '.' + hostname2 + '</a>';
  document.getElementById(spanid).innerHTML = addrtext;
}

function make_addr_text(spanid,hostname1,hostname2,username,text) {
  addrtext = '<a href="mail';
  addrtext += 'to:' + username;
  addrtext += "@";
  addrtext += hostname1;
  addrtext += '.' + hostname2 + '">' + text;
  addrtext += '</a>';
  document.getElementById(spanid).innerHTML = addrtext;
}
