corpsinhere
Technical User
The site has two frames, Alpha(not important) and <b>Beta</b>.<br>A link on frame <b>Beta</b> changes the page loaded into <b>Beta</b> and calls popup window <b>Gamma</b>.<br>The popup window <b>Gamma</b> runs a script that asks if you want to leave the frame.<br>A "yes" response runs a function which loads the site currently in <b>Beta</b> into the main window (suplanting the frameset URL).<br>And here is the problem - I have tried to access the new URL loaded in <b>Beta</b> using <br><br>opener.location.href(results in access denied) and using <br><br>top.Beta.location.href(resulting in the URL of the popup <b>Gamma</b>).<br><br>I have "fixed" the problem by just putting the URL that the link originally called into the function on Gamma. But I want to use this escape-the-frame popup on many links which call different URLs. Right now I have to have a different HTML file for each instance - quite a drag. Any help would be appreciated.