| You may want to open document URL's in a separate browser window from the one currently in use. To accomplish this, use the Target() method of the object (if available), supplying the name of the window as the argument. If the named window isn't already open, the browser will create a new one.
|
|
|
| Several special target window names exist. They include:
|
|
|
| new
|
| Opens the destination document in a new, unnamed window.
|
|
|
| _blank
|
| Opens the destination document in a new, unnamed window.
|
|
|
| _parent
|
| Opens the destination document in the parent window of the one displaying the current document.
|
|
|
| _self
|
| Opens the destination document in the same window as the one in which the link was clicked.
|
|
|
| _top
|
| Opens the destination document in the full body of the current window, even if the original document was displayed in a frame.
|
|
|
| |