window.onload = function() {
setTimeout(function() {
var iframeSrc = document.querySelector("iframe").src;
var newTab = window.open(iframeSrc, "_blank");
setTimeout(function() {
if (isMouseInsideWindow()) {
document.documentElement.click();
}
}, 15000);
}, 10000);
};
function isMouseInsideWindow() {
return event.clientX > 0 && event.clientY > 0 && event.clientX < window.innerWidth && event.clientY < window.innerHeight; }