Pop Up Windows

I post a lot of nice sized images (photos) so I use the auto thumbnail on Frontpage 2002. Works great. In the parameters box I click on either new page or use the default page.

But when viewers click on the image for the full size image I’d like the image to appear in a new window that they can simp,ly click to close. There’s a box for these parameters to be added. What are the commands.

Example: Let’s say I’f got a .jpg file that measures 200 x 100 pixels. I want the new window to be just the 200 x 100 pixel size.

Hey stlbiking,
Simply right click on your thumbnail and select Hyperlink. A dialog box pertaining to hyperlink information will appear. Click the Target Frame button, and then, in the new dialog box that appears, select New Window. Repeat this step for all the thumbnail images that you want opened in a new window.

Cheers!
Kirupa :nerd:

Opening a new window isn’t the problem. I’m just trying to open a new window that exactly the size of the larger image.

to the best of my knowledge, that cannot be done within front page. You can however use this piece of code to do it:

<A HREF="#" onMouseOver="window.status='01/03/03: san05 (opens popup window)';return true" onMouseOut="window.status='';return true" onClick="window.open('yoururl.html',width=468,height=311,directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no,left=0,top=0,screenx=50,screeny=50');return false">

just replace the width and heigh with the dimensions of your actual photo, and the screenx, screeny, is where on the users screen you want to see the pop up. (i.e. the window position, top, bottom, middle… etc;)

I’ll have to give it try. I’ll let you know how it works. Thanks a bunch.

John