in reply to Opening an offsite page in a new window while redirecting the current window.

Yes, fuzzysteve is correct. You'll have to end up using JavaScript. See the Netscape documentation on JavaScript for more information.

You should be able to achieve your goal using:

<html> <head> <script> newWin=window.open ("http://www.someothersite.org","TheTitle","tool +bar=yes,scroll+bars=yes") self.location="http://www.mynewurl.com" </script> </head> </html>
However, creating new windows is a very evil deed indeed.
  • Comment on Re: Opening an offsite page in a new window while redirecting the current window.
  • Download Code