Perry, 
Can you use the width & height attributes: 

window.open('testpop.html','winpop','width=200,height=200,directories=yes,location=yes,menubar=yes,scrollbars=yes,status=yes,toolbar=yes,resizable=yes');

Sorry, I'm away from a NN4x browser, so I can't test it.  It is supposed to work in 
NN, and if you don't specify the width/height, then it mimics the parent window. 
  I grabbed the above from: 
http://www.tech.irt.org/articles/js128/
"The javascript popup window primer" 

===========
Taking it one step further, if you want to open it to a certain size and place it at a 
certain point on the viewer's screen, the following comes in handy: 
-----------------------------
leftPos = 0
if (screen) {
  leftPos = screen.width-425
        }
newWindow = window.open('week1.html', 'newWin', 
'width=325,height=300,left='+leftPos+',top=150')
-----------------------------------
//I don't know if the above is compatible in NN4x ++


~Jim 

____ � The WDVL Discussion List from WDVL.COM � ____
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
       Send Your Posts To: [EMAIL PROTECTED]
To change subscription settings to the wdvltalk digest version:
    http://wdvl.internet.com/WDVL/Forum/#sub

________________  http://www.wdvl.com  _______________________

You are currently subscribed to wdvltalk as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]

Reply via email to