Ken, >Sorry guys. I think I missed my morning coffee. I'll just re-phrase my >question. Please ignore previous post. Here goes: >My page opens a pop-up window (a cfm page). From there I want to >submit a form to the first page, the base window, and once that is >done, I want to close the pop-up. >Please help.
Personally, I'd post the form to the pop-up window and then just serve back the following code once the form has been processed: <script type="text/javascript"> self.close(); </script> This is going to be the much easier way to handle things. If you really need to post back to the opener, you're going to be probably best suited by copying the values in the pop-up window back to a hidden form on the "opener" (the window that opened the pop-up) and then submit the hidden form. At least that's the only method I've found that's reliable in the past. -Dan ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| 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:258110 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

