Paul said:
How do I open a second popup from an already open popup window?
Paul
The same way you opened the first one:
PAGE1.HTM:
<body onload="window.open('PAGE2.HTM', 'page2',
'width=400,height=200');">
PAGE2.HTM:
<body onload="window.open('PAGE3.HTM', 'page3', 'width=300,
height=100');">
PAGE3.HTM
<body onload="window.open('PAGE1.HTM', 'page1',
'width=500,height=400');">
I included the circular reference because I figure if you're planning on
annoying your users with popups, you might as well go all the way and
deluge them with a never ending series of popups.
--
| Grant Wagner <
[email protected]>
* Client-side Javascript and Netscape 4 DOM Reference available at:
*
http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/frames.html
* Internet Explorer DOM Reference available at:
*
http://msdn.microsoft.com/workshop/author/dhtml/reference/dhtml_reference_entry.asp
* Netscape 6/7 DOM Reference available at:
*
http://www.mozilla.org/docs/dom/domref/
* Tips for upgrading JavaScript for Netscape 7 / Mozilla
*
http://www.mozilla.org/docs/web-developer/upgrade_2.html