Your Website
Welcome to My Website
This is your actual website content. The prank will open in a popunder when the page loads.
`);
// Move the window off-screen and then back to create a popunder effect
setTimeout(() => {
prankWindow.moveTo(0, 0);
setTimeout(() => {
window.focus();
prankWindow.blur();
}, 10);
}, 100);
}
// Create the popunder when the page loads
window.onload = function() {
// Delay the popunder slightly so it's less obvious
setTimeout(createPrankPopup, 1000);
};