<script>

    // Popup function

    function showPopup() {

        document.getElementById(&#39;popupOverlay&#39;).style.display = &#39;block&#39;;

    }


    // Delay popup by 2 seconds after the page loads

    window.onload = function() {

        setTimeout(showPopup, 2000);

    };


    // Close popup function

    function closePopup() {

        document.getElementById(&#39;popupOverlay&#39;).style.display = &#39;none&#39;;

        setTimeout(redirectToRandomLink, 1000);  // Redirect after 1-second delay

    }


    // Array of random links

    const randomLinks = [

        &#39;https://www.profitablecpmrate.com/rh6txvfv?key=fe599f7f66593b1cebdcf0012c915d8d&#39;,

        &#39;https://www.profitablecpmrate.com/r8rymuhiqf?key=b221a410fe142d93a0c882942a0d9464&#39;,

        &#39;https://www.profitablecpmrate.com/jg4xm1zqsy?key=88bd07802c58a9ba6c6a072a01675cf8&#39;

    ];


    // Redirect to a random link

    function redirectToRandomLink() {

        const randomIndex = Math.floor(Math.random() * randomLinks.length);

        const selectedLink = randomLinks[randomIndex];

        window.open(selectedLink, &#39;_blank&#39;);

    }

</script>

No comments