+44 (0) 1603 937800 — Mon to Fri, 9am to 5pm UK time (currently 6:53pm in the UK)
A - A - A

Dormant Accounts & Unclaimed Assets Guidebook

Register your interest

  • Registration does not guarantee automatic access to the guidebook. Access will be granted only after a review of the registrant.
  • The guidebook is intended for the registrant's use and colleagues within the same organisation or group only, and should not be shared with other clients outside of their organisation.
  • The Tracing Group Limited may also contact you regarding our products and services as well as the latest industry insights. You can opt-out of our communications at any time by contacting us here.

Thank you for registering your interest.
There was an error on the form. Please check and try again.
You have submitted too many forms. Please try again later.
Ten minus six
function submitForm(formId) { event.preventDefault(); var originalButtonText = document.getElementById("submitButton").innerHTML; document.getElementById("submitButton").innerHTML = ' Sending...'; document.getElementById("submitButton").disabled = true; const form = document.getElementById(formId); const formData = new FormData(form); fetch('/api/contact', { method: 'POST', body: formData }) .then(response => { document.getElementById("submitButton").innerHTML = originalButtonText; document.getElementById("submitButton").disabled = false; if(response.ok) { form.classList.remove('fail'); form.classList.remove('ratelimit'); form.classList.add('success'); form.reset(); } else if(response.status === 429) { form.classList.remove('success'); form.classList.remove('fail'); form.classList.add('ratelimit'); } else { form.classList.remove('success'); form.classList.remove('ratelimit'); form.classList.add('fail'); } }); }