Начало
Навигация
Страница Popup (Источник)
Спустя пять секунд после того, как предыдущая страница закончила загружать Вас, были посланы в эту страницу.
JavaScript Navigation: Страница Popup (Источник)
<!-- TWO STEPS TO INSTALL POPUP PAGE: 1. Copy the coding into the HEAD of your HTML document 2. Add the onLoad event handler into the BODY tag --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin function popupPage() { var page = "popup.html"; windowprops = "height=500,width=500,location=no," + "scrollbars=no,menubars=no,toolbars=no,resizable=yes"; window.open(page, "Popup", windowprops); } // End --> </script> <!-- STEP TWO: Insert the onLoad event handler into your BODY tag --> <BODY onLoad="setTimeout('popupPage()', 5000);"> // 5000 represents the delay time in // milliseconds. 2000 = 2 secs, etc. <!-- Script Size: 0.81 KB -->