I'm facing a problem with Firefox.
I've got a page with a input text box element within a form .
On the Click of Submit , I would like to open a new window with width =1200 and height=900 .
I've used the following code
<form name='form' action="login_check.php" method="POST" target="foo" onsubmit="window.open('', 'foo', 'width=450,height=300,status=yes,resizable=yes,scrollbars=yes')">
It works perfectly fine in IE , however in Firefox it opens it in a tab... My objective is to actually hide the address toolbar.
Hope someone could really help me out here.