And, let's not forget some people don't allow, or want, their webpages to
be framed...so best to ask permission first.
--
Rob Giordano
Microsoft MVP - FrontPage
| Actually it is possible to code a link so that it opens in a new window
| Mike. There are at least two ways in Publisher. Reference: Create a
| hyperlink in Publisher that opens in a new window:
|
http://office.microsoft.com/en-us/publisher/HA011587451033.aspx
|
| However, the ECMAScript method has a code error. This error was caught by
| another poster who said:
|
| "The problem with the script on page HP030805631033.aspx is that it
includes
| 'comment out' code, meant to prevent older browsers from displaying the
| script as HTML. The script does work if you remove the 'comment out' code.
|
|
| The script on page HP030805631033.aspx is: <script language="JavaScript"
| type="text/javascript"> <!-- function Show(Url, Name, Features) {
| window.open(Url, Name, Features); } // --> </script>.
|
|
| To make it work use: <script language="JavaScript" type="text/javascript">
| function Show(Url, Name, Features) { window.open(Url, Name, Features); }
| </script>
|
|
| This is the same script, but without the 'comment out' code of <!-- and //
| -->."
|
| I use both methods, and can confirm they both work with the change in the
| code snippet.
|
| DavidF
|
|
|
| | > For all intents and purposes, this isn't feasible. It's akin to wanting
to
| > wanting to watch your fireplace when you visit the neighbors down the
| > street.
| >
| > The only thing you might try, and I don't recommend it, would be using
an
| > i-frame to contain the site. I would bet it will look like crap, though.
| >
| > Mike
| >
| > pc wrote:
| >> How do I get a link inside Publisher 2007 to open up a website into a
new
| >> browser window?
| >>
| >> For example, I want to provide the convenience on my web site for a
| >> viewer to clike a link to see valuable content, without leaving my site
| >> entirely. I don't want them to have to click their back button, rather
| >> still see my navagation bars while they view the other site.
|
|