in reply to CGI new window fixed dimension

What the others have said is perfectly true. Perl, running on the server side, cannot force the characteristics of the created window. All it can do is ask the browser to open a new window.

You need to use some script that is run on the client side to control a window. Hence the javascript. Fortunately JavaScript is not Java! It is much simpler to use as you can see form the code snippet in another reply.

jdtoronto