<!-- code from http://www.webdevtips.co.uk/codegen/email_scramble.shtml -->
<!-- This block gets placed betweent the <head></head> tags -->


<!-- 

// example calling arguments: get_it('bentleyparentsassociation_x1_electricseaturtle_x2_com', 'BPA%20Website%20Inquiry')
// (x1 stands in for "@" and x2 stands in for "."

function get_it(edress, subject){
var re= /_x1_/gi;
edress = edress.replace(re,'@');
var re= /_x2_/gi;
edress = edress.replace(re,'.');
var the_link="mai" + "lto" +":"+edress+"?subject=" + subject;
window.location=the_link;

}

// --> 
