Popup Page
Posted: Fri Dec 24, 2004 7:53 am
Once your page loads, after the number of seconds you define, a popup window will open.
<!-- TWO STEPS TO INSTALL POPUP PAGE:
1. Copy the coding into the HEAD of your HTML ****
2. Add the onLoad event handler into the BODY tag -->
<head>
<script type="text/javascript" language="JavaScript">
<!-- Begin
function popupPage() {
var page = "http://www.8sky.info/popup.html";
windowprops = "height=500,width=500,location=no,"
+ "scrollbars=no,menubars=no,toolbars=no,resizable=yes";
window.open(page, "Popup", windowprops);
}
// End -->
</script>
</head>
<body onload="setTimeout('popupPage()', 5000);">
</body>
<!-- TWO STEPS TO INSTALL POPUP PAGE:
1. Copy the coding into the HEAD of your HTML ****
2. Add the onLoad event handler into the BODY tag -->
<head>
<script type="text/javascript" language="JavaScript">
<!-- Begin
function popupPage() {
var page = "http://www.8sky.info/popup.html";
windowprops = "height=500,width=500,location=no,"
+ "scrollbars=no,menubars=no,toolbars=no,resizable=yes";
window.open(page, "Popup", windowprops);
}
// End -->
</script>
</head>
<body onload="setTimeout('popupPage()', 5000);">
</body>