Forum Moderators: open
and a good pop-up window tutorial here:
[tech.irt.org...]
File #1
<html>
<head>
<script type='text/javascript'><!--
var
popupDelay = 7000,
popupUrl = "delayed_popup2.html",
popupName = "popup1",
popupFeatures = "width=300,height=400,toolbar=0,resizable=0";
window.onload = function() {
window.setTimeout("openPopup()", popupDelay);
}
function openPopup() {
window.open(popupUrl, popupName, popupFeatures);
}
//--></script>
</head>
<body>
This is delayed_popup1.html
</body>
</html>
File #2
<html>
<head>
<script type='text/javascript'><!--
var closeDelay = 7000;
window.onload = function() {
window.setTimeout("window.close()", closeDelay);
}
//--></script>
</head>
<body>
This is delayed_popup2.html
</body>
</html>