// Email obfuscator and encoder - version 1.2
// Example of usage with the following email address: my-email-address@my-domain-name.com
// Visit http://www.nienteansia.it/altri-files/email_obfuscator_and_encoder/ for more informations and installation instructions
///////////////////////////////////////////////////////////////
// Beginning of email variables - modify to match your email address
var part1=('berryberry50'); // first part of address (before @) - change it to match your address
var part2=('hotmail'); // second part of address (after @) - change it to match your address
var part3=('com'); // last part of address without dot (com net org - etc.) - change it to match your address
// End of email variables
///////////////////////////////////////////////////////////////
// Link text or image - link title - email subject -  modify to your liking
var text=('communications officer.'); // link text - change it to your liking or use an image: <img src="image_path.gif">
var titl=('Send email to:'); // link title - change it to your liking
var subj=('Contact Me:Login Form Problem'); // email subject - change it to what you prefer
///////////////////////////////////////////////////////////////
// Encoded variables - do not modify 
var asciiend=(';'); // ascii code for ; - don't change it
var a1=('&#109;&#097;&#1')+('05'); // ascii code for mai - don't change it
var a2=('&#108;&#116;&#111;&#')+('58'); // ascii code for lto: - don't change it
var a4=('&#')+('46'); // ascii code for . (dot) - don't change it
var a5=('&#')+('64'); // ascii code for @ (at) - don't change it
var a6=('&#63;')+('&#115;&#117;&#098'); // ascii code for ?sub - don't change it
var a7=('&#106;&#101;&#099;&#116;')+('&#61'); // ascii code for ject= - don't change it
///////////////////////////////////////////////////////////////
var em=(encodeURIComponent(('<')+('a ')+('hr')+('ef')+('=')+('"'))+(''+ a1 +'')+(''+ asciiend +''));
var ai=(encodeURIComponent((''+ a2 +'')+(''+ asciiend +'')+(''+ part1 +'')+(''+ a5 +'')));
var l=(''+ part2 +'');
var ad=(''+ a4 +'');
var dr=(''+ part3 +'');
var es=(encodeURIComponent(''+ a6 +'')+(''+ asciiend +''));
var s=(encodeURIComponent((''+ a7 +'')+(''+ asciiend +'')+(''+ subj +'')+('"')+(' ')+('ti')+('tle')+('=')+('"')+(''+ titl +'')+
(' ')+('' + part1 +'')+(''+ a5 +'')+(''+ asciiend +'')+(''+ part2 +'')+(''+ a4 +'')+(''+ asciiend +'')+(''+ part3 + '')+('">')+
(''+ text +'')+('</')+('a>'))); // encode and put parts of address together
var address=(escape((decodeURIComponent(''+ em +''))+(decodeURIComponent(''+ ai +''))+(''+ l +'')+(''+ ad +'')+(''+ dr +'')+
(decodeURIComponent(''+ es +''))+(decodeURIComponent(''+ s +''))));

