in reply to Re: Open another IE browser window from CGI
in thread Open another IE browser window from CGI

you have to run javascript on the client side.so your cgi script should output the following among others:
<html> <head> <script language="JavaScript"> <!-- function open_new_window(url,name) { new_window = window.open('http://www.perlmonks.com','perlmonks','width +=300,height=200,left=100,top=30') } // --> </script> </head> <body onload="open_new_window()"> a perlmonks window should appear </body> </html>