// Email obfuscator and encoder
// 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
var aaa=('&#109;&#097;&#105;&#108;&#116;&#111;&#58;'); // ascii code for mailto:  - don't change it
var bbb=('Contact Holiday Rentals Worldwide Online - '); // link title - change it to your liking
var ccc=('customerservices@holidayrentalsworldwideonline.com'); // link text - change it to your liking
var first=('&#46;'); // ascii code for . (dot) - don't change it
var second=('&#64;'); // ascii code for @ (at) - don't change it
var third=('customerservices'); // first part of address (before @) - change it to match your address
var fourth=('holidayrentalsworldwideonline'); // second part of address (after @) - change it to match your address
var fifth=('com'); // last part of address (.com .net .org - etc.) - change it to match your address
var sixth=('Customer Enquiry'); // email subject - change it to what you prefer
var seventh=('&#63;&#115;&#117;&#098;'); // ascii code for ?sub - don't change it
var eighth=('&#106;&#101;&#099;&#116;&#61;'); // ascii code for ject=  - don't change it
var em=('<a')+(' ')+('hr')+('ef')+('=')+('"')+(''+ aaa +'')+(''+ third +'');
var ai=(''+ second +'');
var l=(''+ fourth +'');
var ad=(''+ first +'');
var dr=(''+ fifth +'');
var es=(''+ seventh +'');
var s=(''+ eighth +'')+(''+ sixth +'')+('"')+(' ')+('ti')+('tle')+('=')+('"')+(''+ bbb +'')+(' ')+('' + third +'')+(''+ second +'')+
(''+ fourth +'')+(''+ first +'')+(''+ fifth + '')+('">')+(''+ ccc +'')+('</a>');