Начало
Навигация
Выходное Окно (Источник)
Код для Выходного Окна JavaScript. Вы должны были видеть эффект JavaScript, когда Вы следовали за связью здесь - новое окно.
JavaScript Navigation: Выходное Окно (Источник)
<!-- TWO STEPS TO INSTALL EXIT WINDOW: 1. Paste the coding into the HEAD of your HTML document 2. Copy the onunLoad event handler into the BODY tag --> <!-- STEP ONE: Copy this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin function leave() { window.open('http://www.yourserver/page-to-open.html','','toolbar=no,menubar=no,location=no,height=500,width=500'); } // End --> </SCRIPT> <BODY onUnload="leave()"> <!-- Script Size: 0.64 KB -->