Forum Moderators: open
The link code will look like this:
<A HREF="/mission-statement.htm" target="_blank">mission statement</A>
In the DreamWeaver interface, right next to the place to define a link in the properties floating toolbar, it says "target" and it has a drop down menu next to it. With the link highlighted in the design view, select "_blank" from this drop down menu and this should insert the correct code around the link to make it open in a new window.
I'm looking at DW4 so it may be different with the newer MX versions.
The syntax for the latter is <a href="javascript:window.open('[YourURL]','[YourWindowName]','[WindowOption1],[WindowOption2],etc...');"
Common window options are:
width=(in pixels, e.g. 350)
height=(in pixels)
toolbar=(yes/no)
directories=(yes/no)
location=(yes/no)
menubar=(yes/no)
resizeable=(yes/no)
scrollbars=(yes/no)
status=(yes/no)
Many options default to those of the calling window, others must be explicitly set.
To close the window with a link, use <a href="" OnClick="window.close()">Close Window</a>
Hope that helps!
Scott