http://www.perlmonks.org?node_id=318656


in reply to (OT) To open a form in a new window

This is not a Perl problem, but anyway: the window.open() method accepts a name of the new window as second parameter. This allows you to specify that window as a target for something, for example a form.

<form target="form_results" ...> ... <input type="submit" value="Go" onclick="javascript:window.open('','fo +rm_results','...');void(0)" /> </form>
--
http://fruiture.de