in reply to Browser manipulation using PERL?

(it's Perl, not 'PERL')

You can specify a target window in which the results of the submitted query will be displayed:
<form method="post" action="/cgi-bin/script.pl" target="blah"> <input type="text" name="txt" size="10"> <input type="submit" value="stumbit"> </form>
This will open a new window with 'blah' as its name, or if the window 'blah' already exists, point it to the results. You can not, however, specify size and toolbar et cetera.

To do that, you'd have to use some sort of a javascript solution, which - IMHO - isn't such a swell idea, since you'd have to rely on the browser to support javascript...

[ar0n]