It does work with more than 1 DHTML window, the problem is due to the "recal" parameter that you must have defined when opening each window. Because of its presence, the window is repositioned again when the document fully loads, causing the window to move from the minimized location on the page back to the original.
There are a couple of ways to solve this. Either remove the "recal" parameter when calling dhtmlwindow.open(), or, minimize the windows after the page has loaded, via something like:
Code:
window.onload=function(){
dhtmlwindow.minimize(inlinewin.getElementsByTagName("img")[0], inlinewin)
dhtmlwindow.minimize(googlewin.getElementsByTagName("img")[0], googlewin)
}
p.s: Please format code in your posts with the CODE tag.
Bookmarks