// Anti-Spam Javascript- By Jan Miranda @ Navlar
// Visit Navlar at: (http://freescripts.navlar.com) for this script and more.
// This notice must stay intact for use
//
// usage: for name@site.com displays as Joe
// creates an email with The_subject as the subject
//
// example:  protectmale("name","site.com","Joe","The_subject")

function protectmale(name1,address1,display_name1,subject1) {
name = name1;
address = address1;
display_name = display_name1;
subject = subject1;
document.write('<a class=malestyle href=&#109;&#97;&#105;&#108;&#116;&#111;:' + name + '&#64;' + address + '?subject=' + subject + '>' + display_name + '&#64;' + address + '</a>');
}

