I need to open a new window and set the size to
approximately 1/4 the size of the full screen window it
comes from.

What I am doing is clicking on a product image and opening
a window that is set up to send information to a shopping
cart after the user selects parameters such as size and
color, etc.

Thanks,

tjm

Re: Setting a Popup window size by MD

MD
Fri Jul 25 11:15:42 CDT 2003

Hi Terry,

Take a look at J-Bots Pop-up Window / Window close components
http://www.websunlimited.com/order/Product/General/popup_window_component.htm
--
Mike -- FrontPage MVP '97-'02
http://www.websunlimited.com
FrontPage Add-ins Since '97 2003 / 2002 / 2000 Compatible
----------------------------------------------------------------------------
--------------------
If you think I'm doing a good job, let MS know at mvpga@microsoft.com

"Terry Migliorino" <tmigliorino@usa.net> wrote in message
news:0acc01c352c5$b539b9c0$a601280a@phx.gbl...
> I need to open a new window and set the size to
> approximately 1/4 the size of the full screen window it
> comes from.
>
> What I am doing is clicking on a product image and opening
> a window that is set up to send information to a shopping
> cart after the user selects parameters such as size and
> color, etc.
>
> Thanks,
>
> tjm



Re: Setting a Popup window size by Jim

Jim
Fri Jul 25 12:20:04 CDT 2003

Sounds like Spawn from my Web site is what you need. Using Spawn, you can
specify a percentage size for the window. I'm not aware of other tools that
will allow you to specify the window size as a percentage.

--
Jim Cheshire
Jimco Add-ins
Add-ins for FrontPage 2000-2003
http://www.jimcoaddins.com
===============================
Co-author of Special Edition
Using Microsoft FrontPage 2003


"Terry Migliorino" <tmigliorino@usa.net> wrote in message
news:0acc01c352c5$b539b9c0$a601280a@phx.gbl...
> I need to open a new window and set the size to
> approximately 1/4 the size of the full screen window it
> comes from.
>
> What I am doing is clicking on a product image and opening
> a window that is set up to send information to a shopping
> cart after the user selects parameters such as size and
> color, etc.
>
> Thanks,
>
> tjm



Setting a Popup window size by carmen

carmen
Fri Jul 25 12:22:49 CDT 2003

Sure, this one is easy. Here's piece of sample code which
you should place between the <BODY> tags and edit to get
the size you want where the width and height dimenions
are indicated:

<a href="#" onClick="window.open
('yourpage.htm', 'YourPageName','width=500,height=400,scro
llbars=yes,resizable=yes,status=yes');"><img
src="YourProductImage.gif" width="196" height="113"
border="0"></a>


Re: Setting a Popup window size by Jim

Jim
Fri Jul 25 12:24:54 CDT 2003

If you want the window to be 25% of the window size, that won't work. 25%
of an 800x600 screen is completely different than 25% of a 1200x1024 screen!
:)

--
Jim Cheshire
Jimco Add-ins
Add-ins for FrontPage 2000-2003
http://www.jimcoaddins.com
===============================
Co-author of Special Edition
Using Microsoft FrontPage 2003


"carmen" <carmen@marric.com> wrote in message
news:1cf001c352d1$5f0ebdf0$a001280a@phx.gbl...
> Sure, this one is easy. Here's piece of sample code which
> you should place between the <BODY> tags and edit to get
> the size you want where the width and height dimenions
> are indicated:
>
> <a href="#" onClick="window.open
> ('yourpage.htm', 'YourPageName','width=500,height=400,scro
> llbars=yes,resizable=yes,status=yes');"><img
> src="YourProductImage.gif" width="196" height="113"
> border="0"></a>
>



Setting a Popup window size (Thanks) by Terry

Terry
Fri Jul 25 12:36:58 CDT 2003

Thanks everyone. I think I'll be able to work something
with what youv'e given me.
>-----Original Message-----
>I need to open a new window and set the size to
>approximately 1/4 the size of the full screen window it
>comes from.
>
>What I am doing is clicking on a product image and
opening
>a window that is set up to send information to a shopping
>cart after the user selects parameters such as size and
>color, etc.
>
>Thanks,
>
>tjm
>.
>