For the <a> tag, the attribute target="_new" specifies that the page pop up in a new browser tab (or new window for non-tabbed browsers).

Other uses for target include specifying a different frame. This is typically used by menus in a navigation bar frame that pop content into a main frame.

There are several pseudo names such as _new. The other one you may use is _top which specifies that the page be opened outside of any frame. This is useful when you want to return to your home page. Here's an example:

<a href="index.html" target="_top"> Home </a>

pop-target.html © 2007, Martin Rinehart