Not quite sure what you mean either, but until you DO elaborate, I'll take a shot at it.
every link (
<A href="XXX.html">Your link</A>) can specify a TARGET, and thus it will open the link in that target.
By default, if you don't specify a target, this will replace the current page with the new one. However, you can set your target to a couple of things:
<A href="XXX.html" target="
Target Value">My Link</A>
Target Value:- _self -- the same as the default
- _blank -- opens a new browser window with you link
- _parent -- you probably don't need this with this website.
- _top -- you probably don't need this with this website.
- [NAME] -- where [Name] is the name of a Frame or IFrame, or a new window. If [Name] is = to the name of a new window, the effect will be similar to _blank, except the window that opens gets named using the [Name] you specify, and each time the link is clicked it will continue to use the same named window.