|
I've never seen or heard of a file being loaded into a layer - I think it's a document object (like a <TABLE>) which prevents that.
If you are trying to load a URL into a page and the page you are loading doesn't want to be in a frame (hence, the breakout script), you might try adding an IFRAME of a 2-frame layout page with theirs in the bottom. Make the 2nd frame 100% and see if their page pops into the IFRAME or breaks it entirely.
<IFRAME SRC="iframe.html"></IFRAME>
iframe.html contains 2 frames:
top.html
[their page].html
Hope that kind of makes sense.
If it doesn't work you may try a JS timeout that changes the TARGET of the IFRAME after a few seconds. I'd have to fish for some code I used once to do something similar...
|