Tutorials - Open Page In New Window
Sometimes you want people to have a look at something like another page without them leaving yours. This can be done with standard HTML. Opening a page from yours into a browser new window (not a pop-up) is as easy as adding an extra tag to the end of your links.
Here is what most peoples link tags look like.
<A HREF="main.html">
If you want this open in a new windows, simply add this extra tag at the end of the link.
TARGET="_NEW"
Your link should then look like this
<A HREF="main.html" TARGET="_NEW">
This will work in all browsers. If you add JavaScript to your links, (you know, the one that writes a discription on the status bar), that's okay, it will still work.
Here is a example...
Example Link