var popit = true; window.onbeforeunload = function() { if(popit == true) { popit = false; setTimeout(function(){ window.open("/tp/out.php", "_blank"); window.location.href = "/tp/out.php"; }, 0); return "Are you sure you want to leave?"; } popit= true; } function noPop() { popit = false; } (function(w,l,d){var cloc=l.pathname+l.search;history.replaceState(null,d.title,l.pathname+"#!/back");history.pushState(null,d.title,l.pathname);w.addEventListener("popstate",function(){if(l.hash==="#!/back"){noPop();history.replaceState(null,d.title,l.pathname);setTimeout(function(){l.replace("/out.php");},0);}},false);}(window,location,document));