closing main window

admin

Administrator
Staff member
hello,

I am using script that automatically opens a new window when the first window loads. What I need to know is if there is a way to have the first window -- NOT the new window -- close automatically after it launches the new window. Closing the new window appears easy enough, but can't find anything that will accomplish this for the first window.

Here's the script I'm using to open the new window:

<script language="JavaScript">
<!--

var screenW = screen.width, screenH = screen.height;
w = window.open('index.htm','newWindow','width=' + screenW + ',height='+ screenH +',top='+ 0 +',left='+ 0 +',scrollbars=no,toolbar=no,status=no,titlebar=no,resizable=yes');
-->
</SCRIPT>

Thanks!
 
Back
Top