// 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   = "contact"; //           The bit BEFORE the @ symbol
var _d = "greatlocalmusic.com"; // The bit AFTER the @ symbol
var _l   = _u + "@" + _d;


// WARNING: DO NOT CHANGE ANYTHING BELOW THIS LINE
// *******  ** *** ****** ******** ***** **** ****


// document.write("<font color='#008080'>"+_l+"</font>");

document.write("<font color='#0000FF'>"+_l+"</font>");


