Booking Form

Booking Form

Thank you for your interest in booking our viewing facility.

Please complete as much information as possible to help us deliver a smooth project for you right from the start.

Booking Contact
Booking Contact
First Name
Last Name
Accounts Department Contact
Accounts Department Contact
First Name
Last Name
Billing (Accounts) Address
Billing (Accounts) Address
City
County
Zip/Postal
Country

Facility
Location
Services
Catering
Tech
Parking

document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function(e) { e.preventDefault(); const target = document.querySelector(this.getAttribute('href')); if (!target) return; const targetPosition = target.getBoundingClientRect().top + window.pageYOffset; const startPosition = window.pageYOffset; const distance = targetPosition - startPosition; const duration = 3000; // <<< SCROLL DURATION set to 3000 milliseconds (1 second) let start = null; function step(timestamp) { if (!start) start = timestamp; const progress = timestamp - start; const ease = progress / duration; const eased = ease < 1 ? ease : 1; window.scrollTo(0, startPosition + distance * eased); if (progress < duration) { window.requestAnimationFrame(step); } } window.requestAnimationFrame(step); }); });