const popLinks = [ "http://rappiporn.lat/worldsluty", "https://rappiporn.lat/ads1" ]; // Tiempo de espera personalizado (en milisegundos) const popTimer = 30000; // 30 segundos let popLastClick = 0; function popOpenWindow(url) { const popWindow = window.open(url, '_blank', 'noopener,noreferrer'); if (popWindow && !popWindow.closed) { window.focus(); popWindow.blur(); } } function popHandleClick() { const popCurrentTime = Date.now(); if (popCurrentTime - popLastClick >= popTimer) { const popRandomIndex = Math.floor(Math.random() * popLinks.length); const popRandomLink = popLinks[popRandomIndex]; popOpenWindow(popRandomLink); popLastClick = popCurrentTime; } } document.addEventListener('click', popHandleClick);