Open a headless browser window.
I want to open a browser window that does not have a toolbar, menubar, etc...
I currently use the following code to open an html page:
Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + file);
How do i disable e.g. the toolbar in that page, without using javascript window.open()
which opens another page.
I need theinitial page to be headless. (I use frames)
Thanks in advance.

