How do you make a new window in reduced size on top of original

M

Monty

I would like a order form page to open on top of product page in a reduced
size..... say 1/3 original pages size. How do I do this?
 
M

MD Websunlimited

Hi Monty,

You'll need to utilize JavaScript to open the window with specific parameters. J-Bots offers both the Popup Window and Window Close.
 
M

Monty

MD,

I added this Java Script line into my page.

<SCRIPT
LANGUAGE="javascript"><!--window.open('http://mydomain/myweb/OrderForm3.ht...=yes,location=no,directories=no,status=no')--></SCRIPT>

this in all on one line & the only space is between SCRIPT & LANGUAGE
all links off this page are by default "open in same window" except for the
buttons which take you to the order form which are set in "hyperlink
properites" to open in New Window

I still cannot get it to work......... any ideas?

Monty
 
T

Trevor L.

Monty said:
MD,

I added this Java Script line into my page.

<SCRIPT
LANGUAGE="javascript"><!--window.open('http://mydomain/myweb/OrderForm3.ht...=yes,location=no,directories=no,status=no')--></SCRIPT>

this in all on one line & the only space is between SCRIPT & LANGUAGE
all links off this page are by default "open in same window" except
for the buttons which take you to the order form which are set in
"hyperlink properites" to open in New Window

I still cannot get it to work......... any ideas?

Monty

I tried this script and it worked. (I used another http:// reference because
clearly yours was an example)

<script type="text/javascript">
window.open('http://mydomain/myweb/OrderForm3.htm','OrderForm3',
'height=200,width=545,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,directories=no,status=no')</script>The paramaters can be on different lines as can be seen above--Cheers,Trevor L.[ Microsoft MVP - FrontPage ]MVPS Website: http://trevorl.mvps.org/
 
M

Monty

Trevor,

Thanks, I got it worked out aslo.......... then found another script that I
liked even better.
Have it all worked out now and navigation finished.

Thanks for the reply, Monty

Trevor L. said:
Monty said:
MD,

I added this Java Script line into my page.

<SCRIPT
LANGUAGE="javascript"><!--window.open('http://mydomain/myweb/OrderForm3.ht...=yes,location=no,directories=no,status=no')--></SCRIPT>

this in all on one line & the only space is between SCRIPT & LANGUAGE
all links off this page are by default "open in same window" except
for the buttons which take you to the order form which are set in
"hyperlink properites" to open in New Window

I still cannot get it to work......... any ideas?

Monty

I tried this script and it worked. (I used another http:// reference because
clearly yours was an example)

<script type="text/javascript">
window.open('http://mydomain/myweb/OrderForm3.htm','OrderForm3',
'height=200,width=545,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,directories=no,status=no')</script>The paramaters can be on different lines as can be seen above--Cheers,Trevor L.[ Microsoft MVP - FrontPage ]MVPS Website: http://trevorl.mvps.org/
 
Top