//<![CDATA[
/* Fcns to create email links that are a bit harder for spam bots to harvest */
function eLink(show, eName, eExt, eHost, subj) { // Creates an email hyperlink
  document.write('<a href="' + 'mai'+'lto'+':' + eName+"&#64;"+eHost+"&#46;"+eExt + "&#63;"+'Subject='+subj + '">' + show + '</a>');
}
function eLinkTip(show, eName, eExt, eHost, subj, tip) { // Creates an email hyperlink with tooltip "tip"
  document.write('<a href="' + 'mai'+'lto'+':' + eName+"&#64;"+eHost+"&#46;"+eExt + "&#63;"+'Subject='+subj + '" title="' + tip + '">' + show + '</a>');
}
function eLinkPage(show, eName, eExt, eHost, subj) { // Creates an email hyperlink with the page appended to the Subject
  document.write("<a href=" + "mai"+"lto"+":" + eName+"&#64;"+eHost+"&#46;"+eExt + "&#63;"+"Subject="+subj +"&#32;"+ location.href + ">" + show + "</a>");
}
//]]>

