(function() { var curScript; var scripts; // https://developer.mozilla.org/en-US/docs/Web/API/Document/currentScript if (document.currentScript) { curScript = document.currentScript; } else { // This doesn't hold true in some cases for iOS9+ scripts = document.getElementsByTagName('script'); curScript = scripts[scripts.length - 1]; } // Ad iFrame var iframe = document.createElement('iframe'); iframe.scrolling = 'no'; iframe.frameBorder = 0; iframe.style.display = 'block'; iframe.style.width = '300px'; iframe.style.height = '250px'; iframe.style.border = 0; iframe.style.margin = 'auto'; iframe.name = 'xyz-ad-iframe'; curScript.parentNode.insertBefore(iframe, curScript); var cw = iframe.contentWindow; cw.document.open(); cw.document.write("HT3 - Foreground pan - v1.0
f"); cw.document.close(); })()