I've just tested a site I've built that has javascript content. The page is opened in a window using...

window.open("index.htm", "windowView", "width=740,left=112,top=150,height=440,toolbar=no,location=no,directories=no,status=no,menubar=no,sc rollbars=no,resizable=no");

However, the window still has a status bar and is resizable. Why has Firefox ignored these commands? Also, some of my <div> containers are in a different place to where they are when viewed in IE5. Is the solution to detect the browser and adjust the position accordingly using code when the page loads?

Thanks.