<!--
//script for creating the MAC email address on the fly to avoid spambots

var three = 'ath.washington.edu'
var one = 'ma'
var two = 'c@m'
var address = one+two+three

document.write('<a href="mai' + 'lto:' + address + '">' + address + '<\/a>')
//-->