<!--
//For hiding email addresses
   // lhs = left hand side, rhs = right hand side
        function printMailToLink(name, lhs, rhs, type)
        {
          document.write("<" + "A HREF=\"mailto" + ":" + lhs + "@" +
rhs + "\">");
          if (type == "full") {
            document.write(name + " - &lt;" + lhs + "@" + rhs + "&gt;");
          }
          if (type == "name") {
            document.write(name);
          }

          if (type == "address") {
            document.write(lhs + "@" + rhs);
          }
          document.write("<" + "/a" + ">");
        }
//-->

