Here is my current script. I need something I can put inside internal hyperlinks in the HTML to prevent the pop up from coming up except on exit.
BETWEEN <HEAD> TAGS
<script language='JavaScript'>
<!-- hide from old browsers
function openindex() {
window.open("http://website.com/exit.htm","","location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,width=490,height=265");
}
// Stop hiding here -->
</script>
INSIDE <BODY> TAG
onunLoad="openindex()">




Bookmarks