in reply to Perl & javascript

You can pass it along as a cgi param in the url when you open the window:
MyWin = window.open("http://foo.com/cgi-bin/foo.cgi?param1=" + documen +t.forms[0].param1.value, "ChildWindow");
Then just access it in your Perl script via CGI.

ar0n ]

Replies are listed 'Best First'.
Re: Re: Perl & javascript
by Anonymous Monk on May 14, 2001 at 18:15 UTC
    Thanks for the prompt reply
    Your answer was spot on.
    Cheers
    Ant