Click to See Complete Forum and Search --> : Help ----> Loading one page and launching another


YAMAMA
03-27-2003, 11:53 PM
Hi all,

I am hoping someone can help and givin all the popups out there I am pretty sure this can be done. I searched but could not find anything.

Here is what I am trying to accomplish.

When someone visits my site I would like the index.htm page to load and also spawn a seperate window with an announcement in it.

If you can help with the code for this I would appreciate it greatly. :D

Jerid

jdavia
03-28-2003, 12:50 AM
Originally posted by YAMAMA
I searched but could not find anything.

When someone visits my site I would like the index.htm page to load and also spawn a seperate window with an announcement in it.
:D
Jerid
It didn't take me too long to search for this, Slow down, sometimes it takes a little patience.
Search for Popup
<script language="JavaScript">
<!--
var gt = unescape('%3e');
var popup = null;
var over = "Launch Pop-up Navigator";
popup = window.open('', 'popupnav', 'width=450,height=200,resizable=0,scrollbars=auto');
if (popup != null) {
if (popup.opener == null) {
popup.opener = self;
}
popup.location.href = 'http://www.cnn.com';
}
// -->
</script>

YAMAMA
03-28-2003, 02:22 AM
Figures... I never searched for "popup".

Thanks for your help. It worked great. You Rock!