<script>
// Popup function
function showPopup() {
document.getElementById('popupOverlay').style.display = 'block';
}
// Delay popup by 2 seconds after the page loads
window.onload = function() {
setTimeout(showPopup, 2000);
};
// Close popup function
function closePopup() {
document.getElementById('popupOverlay').style.display = 'none';
setTimeout(redirectToRandomLink, 1000); // Redirect after 1-second delay
}
// Array of random links
const randomLinks = [
'https://www.profitablecpmrate.com/rh6txvfv?key=fe599f7f66593b1cebdcf0012c915d8d',
'https://www.profitablecpmrate.com/r8rymuhiqf?key=b221a410fe142d93a0c882942a0d9464',
'https://www.profitablecpmrate.com/jg4xm1zqsy?key=88bd07802c58a9ba6c6a072a01675cf8'
];
// Redirect to a random link
function redirectToRandomLink() {
const randomIndex = Math.floor(Math.random() * randomLinks.length);
const selectedLink = randomLinks[randomIndex];
window.open(selectedLink, '_blank');
}
</script>
No comments