//write out email addresses
/*
a = the email name (ex: shachey)
b = the domain name (ex: sjsindy.org)
*/
function doEmail(a, b) {
  document.write('<a href="mai');
  document.write('lto:'+a+'@');document.write(b+'" class="maincopyLink">');
  document.write(a+'@'+b+'</a>');
}
