Disable Location box in Javascript popup in Firefox

Hi all,

I am triggering a Javascript based popup in which I want the URL location box hidden. I can get it to work fine in IE (I am using IE8) but the location URL box always shows in Firefox (I am using FF3.5). The code I currently have is below…

var win1 = newWindow('{0}', null, 700, 'location=0,scrollbars=1,resizable=1', 300);

Is what I want to achieve not possible in FF based browsers?

Thanks

AFAIK hiding that is a security risk. I’m (almost) surprised it works in IE8

Finding this out took about 5 seconds: http://forums.mozillazine.org/viewtopic.php?t=657012

and: https://developer.mozilla.org/En/DOM/Window.open

scroll down to the yellow Firefox 3 note

IE8 just substitutes the user enterable address box with an address bar that displays the address but doesn’t allow you to change it - the option only turns off your ability to update the address, you can still see the address of the current page.

Thanks all.

Ok, now I know. I did do some googling on it but I guess my search criteria wasn’t too great :s