Well, you can launch an iframe from the top window from within an iframe. Once you are in an iframe, the top window is top or parent. The way this would work out with the widget script depends upon how you would want to do it though. As an example, once you have some iframe widget open on your page, from the page within that, if you wanted to open the Google iframe from the demo, you could do:
Code:
<a href="#" onclick="parent.googlewin.show(); return false">Show Window 1</a>
You could also open an entirely new iframe on the parent from within an iframe like so:
Code:
<a href="#" onclick="parent.test2=parent.dhtmlwindow.open('testbox2', 'iframe', 'test2.htm', '#11: test2', 'width=250px,height=200px,resize=1,scrolling=1,left=20px,top=100px', 'recal');return false;">test 2</a>
Bookmarks