window.addEventListener('load', function() { let siteId = 1304; let unitId = 4383; let unitWidth = 300; let unitHeight = 250; let unitWidthHalf = -300/2; let unitHeightHalf = -250/2; let container = document.createElement('div'); container.id = 'bta_sticky_' + unitId; container.style.position = 'fixed'; container.style.bottom = '0'; container.style.right = '0'; let iframeHtml = ''; container.innerHTML = iframeHtml; let closeButton = document.createElement('button'); closeButton.innerHTML = 'x'; closeButton.style.position = 'absolute'; closeButton.style.top = '0'; closeButton.style.right = '0'; closeButton.style.padding = '5px'; closeButton.style.background = '#fff'; closeButton.style.border = 'none'; closeButton.style.cursor = 'pointer'; container.appendChild(closeButton); closeButton.addEventListener('click', function() { container.style.display = 'none'; }); document.body.appendChild(container); });