Click to See Complete Forum and Search --> : Targets


garyhay
08-04-2003, 05:25 AM
I need some help here if thats possible.

I have a popup window that calls a cgi script. The results of this script open a html page inside the popup.

Underneath the result withinh the HTML page I would like to display a list of links. I would like this list of links to open the calling page.

Is that clear??

All help really appreaciated.

the url is http://www.myfamilyname.org.uk and the top right of the screen has the Name Search pop up. If you search for a surname you will see the a,b,c.. links I need to target the calling page

THanks

Gollum
08-04-2003, 05:52 AM
use window.opener.location to send the parent window somewhere.
e.g.

<a href="javascript:0" onclick="window.opener.location='www.somewhereelse.com'; window.close(); event.returnValue = false; return false;">Send the big window somewhere else</a>

garyhay
08-04-2003, 11:26 AM
Thanks

Worked a treat