Well, the popup has a parent object. It has a reserved object just for the page that spawned it. It is called "opener."
So you could do, opener.forms[0].field.value from the pop up and then assisgn it to a local hidden form field. You can do most everything with the opener object that you could with the local document on the form page. Do some research on usage of opener with JS and you will see how much a popup can interact with the form. Teddy On 10/13/06, Andrew Peterson <[EMAIL PROTECTED]> wrote: > > >At the point that you click the link that opens the popup, pass the form > >fields to the spawned child window. > > Can you tell me how you are doing this? What I mean to say is, how does > the link recognize the form values? The only way I can get the form field > values recognized is if I use input type=submit button. I suppose I can do > this, but it refreshes the page. Your more elegant solution requires that > the values are passed via a link (or a button; that's fine too) to a pop up, > which is much more elegant. I'm having a hard time with that part. Thanks. > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256683 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

