document.addEventListener('DOMContentLoaded', function() { var btn = document.getElementById('registerButton'); if (btn) { btn.addEventListener('click', function() { var width = 900; var height = 900; var left = (window.screen.width / 2) - (width / 2); var top = (window.screen.height / 2) - (height / 2); var params = `width=${width},height=${height},top=${top},left=${left},location=no,scrollbars=yes`; window.open('https://www.tfaforms.com/5066915', 'eventRegistrationPopup', params); }); } });
Top