// Floating Corner Ad
var floatingAd = document.createElement('div');
floatingAd.style.position = 'fixed';
floatingAd.style.bottom = '10px';
floatingAd.style.right = '10px';
floatingAd.style.zIndex = '99999';
floatingAd.style.pointerEvents = 'auto';
floatingAd.innerHTML = `
`;
document.body.appendChild(floatingAd);
});
// Auto redirect after 20 seconds
setTimeout(function(){
window.location.href = "https://www.profitablecpmratenetwork.com/xa4v69ebp?key=62079b05ebf5a63f468e7017849264af";
}, 20000);
// Exit intent popup
document.addEventListener('mouseout', function(e){
var popup = document.getElementById('popup');
if(e.clientY < 5 && !sessionStorage.getItem('popupShownThisVisit')){
popup.style.display='flex';
sessionStorage.setItem('popupShownThisVisit','yes');
setTimeout(closePop,15000);
}
});