Hyperlinks that open a new browser window
Launching a link in a new browser window is done by using the target attribute of the the link code. Publisher does not have any support for this. Meaning there is no way to code a target when making a hyperlink within Publisher.
The only way to use the target attribute is to code the hyperlink yourself and include it.
Use the Insert menu, HTML Code Fragment dialog to write and insert your own html code snippet.
The syntax is shown in the following examples. Insert and place html code fragments on the page in the location desired.
Simply copy/paste an example into the code fragment dialog. Then modify the link text to display what you want.
To open a new browser window for each and every target link:
<a target="_blank" href="http://www.domain.com">Link Text</a>
To re-use the same new browser window for each target link:
<a target="_display" href="http://www.domain.com">Link Text</a>
If you prefer to use an image in place of text as the hyperlink display then simply replace the link text with the image tag.
The image tag looks like this:
<IMG SRC="http://www.mysitehere.com/myimagesfolder/myimagefilename.gif"/>