Instead of something like:
Code:
<a href="#" onClick="yahoowin=dhtmlwindow.open('yahoo', 'iframe', 'http://yahoo.com', 'Yahoo', 'width=500px,height=300px,center=1'); return false">Show Yahoo</a>
Try:
Code:
<a href="#" onClick="yahoowin=parent.mainwin.dhtmlwindow.open('yahoo', 'iframe', 'http://yahoo.com', 'Yahoo', 'width=500px,height=300px,center=1'); return false">Show Yahoo</a>
Make sure all the DHTML window files are installed inside the Main Window page (not the top frame). All the above code does is try and call the dhtmlwindow() function that is inside the main window (versus the current frame, or top window). I haven't tested this yet, though it should work.
Bookmarks