<script>
// Your ad links
const adLinks = [
"https://www.profitableratecpm.com/mdt112bm31?key=4d2423b5ab7b5f81361868114e84a257",
"https://www.profitableratecpm.com/jx0sa0jk2?key=f8fc55b471682762004277d9e85d9984",
"https://www.profitableratecpm.com/z51nd0rjx?key=1a6d20f9ecc978caa0d74a862eac568a",
"https://www.profitableratecpm.com/d1zhbv1v5r?key=812409e89a8784f2f0eee3f85dd93278",
"https://www.profitableratecpm.com/x3vvgpfe5?key=57e679bf4ec818d8c066a5cb574a57a7"
];
// Pick random ad link
function getAdLink() {
return adLinks[Math.floor(Math.random() * adLinks.length)];
}
// Attach to all links on page
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll("a").forEach(link => {
link.addEventListener("click", function(e) {
e.preventDefault(); // Stop normal link
let adUrl = getAdLink();
// Open ad in new tab / popup
window.open(adUrl, "_blank");
// After short delay, go to original link
setTimeout(() => {
window.location.href = link.href;
}, 500); // 0.5 sec delay
});
});
});
</script>
