var urlText=document.URL; var urlRegex= /\/([A-F0-9]8)\//; var result = urlText.match(urlRegex); // Specify popup URL here exitURL = "http://tours.blackamateur.com/pop-it.html"; // Specify popup width exitwidth = 606; // Specify popup height exitheight = 645; // Special Parameters winParams = "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,top=0,left="+Math.round((screen.availWidth-exitwidth)/2) +",width="+exitwidth+",height="+exitheight; var exit=true; // //set page event handlers if (window.attachEvent) { //IE and Opera window.attachEvent("onunload", pop); } else if (window.addEventListener) { // FireFox window.addEventListener("unload", pop, false); } else { // other window.addEventListener("unload", pop, false); } function pop() { if (exit==false) { return; } window.open(exitURL,"","resizable=no,status=no,scrollbars=no,modal=yes,height="+exitheight+",width="+exitwidth+",toolbar=no,left="+Math.round((screen.availWidth-exitwidth)/2)); exit=false; } //