<!--
//for drop down menu
startList = function() {
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("dmenu");
		for (i=0; i < navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

window.onload=startList;



//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" + ">");
        }
//-->

