// hides email addresses
// David Baker 2007

function enshroud(username, otherdomain)
{
  var domain   = "s&#99;&#x6F;t&#116;&#x63;o&#117;&#x6E;t&#121;&#x76;a&#46;&#x63;o&#109;";
  var symbol   = "&#x40;";

  if (otherdomain) // other domain is optional if you don't use Scott County addresses
    {
      domain = otherdomain;
    }

  document.write('<span class="smallerText">');	
  document.write("<a href=");
  document.write("ma" + "il");
  document.write("to:");
  document.write(username);
  document.write(symbol);
  document.write(domain);
  document.write(">");        
  document.write(username);
  document.write(symbol);
  document.write(domain);
  document.write("</a>");
  document.write("</span>"); 
}