// JavaScript Document.
// Anti-spam address builder;
// From an idea of Steve Linford, by Salvatore Toribio, enriched by Pancho;
function mail (mtext,site,name) {
      document.write ("<a href=" + "mailto:" + name + "@" + site + ">" + mtext + "</a>");
      }
function fullmail (mtext,site,name,subject,title) {
      document.write ("<a href=" + "mailto:" + name + "@" + site +
      "?subject=" + subject + " title=" + title + ">" + mtext + "</a>");
      }
