We produce a FREE monthly e-newsletter with all the latest business and tax news. (Click here to see latest newsletter)
You only have to register once. You will then receive email confirmation.
You can unsubscribe at any time.
Don’t worry
Following registration we GUARANTEE that you won’t be bombarded with letters, emails and phone calls from us. Nor do we share our information with any other third party.
function doRegister () { with (document.menuForm) { if (surname.value == "") { alert ("You must enter your name to register."); surname.focus (); return; } if (forename.value == "") { alert ("You must enter your name to register."); forename.focus (); return; } if (email.value == "") { alert ("You must enter an email address to register."); email.focus (); return; }
if (!confirm ("By Registering we will send you a FREE Monthly Newsletter.")) return;
surname.value = surname.value.replace (/'/g, "\\'"); forename.value = forename.value.replace (/'/g, "\\'"); company.value = company.value.replace (/'/g, "\\'"); email.value = email.value.replace (/'/g, "\\'");
service.value = "desktop"; document.menuForm["function"].value = "registerEBS"; submit (); } }