// NOTES:
// Make sure when editing the following lines, that quotes " and semicolons ; are left intact.  
// Only edit "BETWEEN" the quotes !!!

// Your email address needs to be split up to prevent spammers collecting it.
// This is fairly effective but not foolproof, and does not guarantee NO spam.
// So, using "sales@youraddress.co.uk" as an example:

var _u   = "info"; //           The bit BEFORE the @ symbol
var _d = "information-knowhow.co.uk"; // The bit AFTER the @ symbol
var _l   = _u + "@" + _d;
var _m = "Email"; 

// WARNING: DO NOT CHANGE ANYTHING BELOW THIS LINE
// *******  ** *** ****** ******** ***** **** ****









//<a href='mailto:"+_l+"' class='red'></a>

document.write("<a href='mailto:"+_l+"'>"+_l+"</a>");