Open Link in New Window
A very simple command for Dreamweaver users, the "open link in new window" script can easily be inserted by hand-coders as well.
In Dreamweaver, when you create the
link, look in the "Property Inspector" for the box labeled "target"
From the drop menu next to the target text box, select "_blank"
In code view, you can see the resulting code:
<a href="blanklink.html" target="_blank">the link</a>
That's it!