// email hider routine

address1 = "sailsignet";
address2 = ".org.uk";
subject = "subject=Query%20about%20SigneT%20dinghies%20/%20association%20via%20the%20sailsignet.org.uk%20website"
body = "&body=Hello%0A%0AI%20have%20a%20query%20relating%20to%20either%20SigneT%20sailing%20dinghies%20or%20the%20SigneT%20Class%20Owners%20Association.%0A%0AI%20am%20contacting%20you%20as%20a%20result%20of%20my%20finding%20your%20details%20on%20the%20sailSigneT.org.uk%20website.%0A%0A"
cc = ""
bcc = ""
newline = "%0A%0A"


function emailhider(useremail)
{
document.write('<a href=\"mailto:' + useremail + '@' + address1 + address2 + '?' + subject + body + cc + bcc + '\">'+ useremail + '@' + address1 + address2 +'</a>');
}

