/******************************************************************
* functions.js
* Michael Greenup
*
* This is a library file which will hold several useful functions.
*******************************************************************/

function emailObfuscator(before_at)
{
  emailAddress = before_at + "&#64;" + "shireofcai.org";
  document.write(
    "<a href=\"mailto:" + emailAddress + "\">" + emailAddress + "</a>");
} // end emailObfuscator