function load() { if (typeof frontAPI !== "undefined" && document.readyState === 'complete') { frontAPI.getUser(function (userInfo) { var logged = 0; if (userInfo && userInfo.user_id) { logged = userInfo.user_id; } var phone = null; if (userInfo.shipping_address && userInfo.shipping_address.phone) { phone = userInfo.shipping_address.phone } if (!phone && userInfo.billing_address && userInfo.billing_address.phone) { phone = userInfo.billing_address.phone } var iframe = document.createElement('iframe'); var src = 'https://shoper.smsapi.com/newsletter/popup/03a16aa62749f3abb3984f592e8e34d8beeea44c?l=' + logged; if (phone) { src += '&p=' + encodeURI(phone); } iframe.src = src; iframe.id = 'newsletter-iframe'; iframe.style.position = 'fixed'; iframe.style.display = 'none'; iframe.style.top = 0; iframe.style.left = 0; iframe.style.height = '100%'; iframe.style.width = '100%'; iframe.style['z-index'] = '999999999'; iframe.style.backgroundColor = 'rgba(0,0,0,0.8)'; document.body.appendChild(iframe); }, { lang: 'pl_PL' }); } else { setTimeout(load, 250); } } load() window.onload = function () { function receiveMessage(event) { var iframe = document.getElementById('newsletter-iframe'); if (event.data === 'removetheiframe') { iframe.style.display = 'none'; } else if (event.data === 'showPopup') { window.setTimeout(function () { iframe.style.display = 'block'; }, 10000); } } window.addEventListener("message", receiveMessage, false); }