>Is it possible to open a brand new browser window and set it's size,
 >location and characteristics (no menu bar, no status bar, etc.) using Perl
 >or is it necessary to always use the same window that has called the script?

With Perl, no. But you can certainly tell Perl to send some javascript that 
does what you want to the browser. Have Perl spit out something like this 
to the browser window:

  <html>
  <head>
     <SCRIPT LANGUAGE = "Javascript" TYPE="text/javascript"><!--
     function open() { window.open('/path/to/file.shtml', 'Your New Window',
     'height=125,width=360,toolbar=no,scrollbars=no,menubar=no,location=no,
     directories=0,status=no,resizable=0'); }
     //--></SCRIPT>
     <title>See Other Window</title>
  </head>
  <body onLoad="open()">

   <h1>Please See The Other Window</h1>

  </body>
  </html>



--
Morbus Iff ( softcore vulcan pr0n rulezzzzz )
http://www.disobey.com/ && http://www.gamegrene.com/
please me: http://www.amazon.com/exec/obidos/wishlist/25USVJDH68554
icq: 2927491 / aim: akaMorbus / yahoo: morbus_iff / jabber.org: morbus


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to