How do I set a hyperlink to open a new, small page?

A

Anton

I want a new window to pop up when people click on an image. How do I set it
so that the new window is only the size of the enlarged picture (500x500px)
and so the window doesn't have a navigation bar etc at the top? Thanks all!
 
T

Teri Carnright

This one you need additional javascript for. If you don't have a pop-up
window script, either use J-Bots, or do a search in your favorite SE for
javascript pop-up window script.

Teri
:)
 
T

Tom Pepper Willett

Download the FREE FP addin Spawn from www.jimcoaddins.com

--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
FrontPage 2003 Product Information:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
Understanding FrontPage:
http://msdn.microsoft.com/office/understanding/frontpage/
===
|I want a new window to pop up when people click on an image. How do I set
it
| so that the new window is only the size of the enlarged picture
(500x500px)
| and so the window doesn't have a navigation bar etc at the top? Thanks
all!
 
T

Tom Pepper Willett

Free FP addin Spawn at www.jimcoaddins.com

--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
FrontPage 2003 Product Information:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
Understanding FrontPage:
http://msdn.microsoft.com/office/understanding/frontpage/
===
| This one you need additional javascript for. If you don't have a pop-up
| window script, either use J-Bots, or do a search in your favorite SE for
| javascript pop-up window script.
|
| Teri
| :)
|
|
| "Anton" wrote:
|
| > I want a new window to pop up when people click on an image. How do I
set it
| > so that the new window is only the size of the enlarged picture
(500x500px)
| > and so the window doesn't have a navigation bar etc at the top? Thanks
all!
 
B

Brett...

Anton said:
I want a new window to pop up when people click on an image. How do
I set it so that the new window is only the size of the enlarged
picture (500x500px) and so the window doesn't have a navigation bar
etc at the top? Thanks all!

I don't think you can in Normal mode, but in HTML mode you can use...

<a href="#" title="Name of link"
onclick="window.open('page.htm','_blank','width=500,height=500,resizable=0,scrollbars=0');return(false);">
Click me
</a>
 
Top