Join our email list for exclusive offers and the latest news.
Choosing a selection results in a full page refresh.
Opens in a new window.
(function () {
var LEAD_KEY = 'ghl_lead_captured'; // persistent across visits
var SESSION_KEY = 'ghl_popup_shown_v1'; // once per visit
var hasLead = localStorage.getItem(LEAD_KEY) === 'true';
var shownThisSession = sessionStorage.getItem(SESSION_KEY) === 'true';
var root = document.getElementById('ghl-popup-root');
var iframe = document.getElementById('popup-TsWCH64uvRnt3JALU4se');
if (!root || !iframe) return;
if (hasLead || shownThisSession) {
// Disable auto activation for this session or if lead already captured
iframe.setAttribute('data-activation-type', 'none');
} else {
// We will allow it to auto-activate this visit, then mark as shown
root.style.display = 'block';
sessionStorage.setItem(SESSION_KEY, 'true');
}
})();