// Anti-Spam Tool - Hide web page e-mail addresses from spiders
// © 2002 Wizard Graphics - Incept: 2002-05-01
function contact(name,bogus,host,title,subj,prod){
     var delim = "\@";
     var href   = 'mailto:';
     var recipient = href + name + delim + host
     if (prod == "none" || prod == null) {var prod = " ";}
     if (subj == "none" || subj == null) {var subj = " ";}
     if (title == "url" || title == null) {
           var title = name + delim + host;    //Displays the mailto URL as the Link Text
           var emtext = '\<a href ="' + recipient + '?subject=' + subj + '">' + title + '</a>';
     }
     else {    //Displays your provided description as the Link Text
           var emtext = '\<a href ="' + recipient + '?subject=' + subj + '">' + title + '</a>';
     }
     document.write(emtext);
}

