Hmm there's no reason why it wouldn't work in IE. Using the first demo in the zip file as an example, this works for me in IE6:
Code:
<body onLoad='googlewin=dhtmlwindow.open("googlebox", "iframe", "http://images.google.com/", "#1: Google Web site", "width=590px,height=350px,resize=1,scrolling=1,center=1", "recal")'>
However, to make the above more unobtrusive, you can call dhtmlwindow.addEvent() to call the desired function on window load:
Code:
dhtmlwindow.addEvent(window, function(){
googlewin=dhtmlwindow.open("googlebox", "iframe", "http://images.google.com/", "#1: Google Web site", "width=590px,height=350px,resize=1,scrolling=1,center=1", "recal")
}, "load")
Bookmarks