Targeting to a Window:
These are targets that will work for opening a new window or loading in the current window. You can use these when using frames as well.
TARGET="_blank"
(This target will cause the link to always be loaded in a new blank window )
TARGET="_self"
(This target causes the link to always load in the same window the link was clicked in)
TARGET="_parent"
(This target makes the link load in the immediate FRAMESET parent of this document. This defaults to acting like "_self" if the document has no parent)
TARGET="_top"
(This target makes the link load in the full body of the window. This defaults to acting like "_self" if the document is already at the top)