Instead of the standard call that causes the window to launch instantly on your page:
Code:
var googlewin=dhtmlwindow.open("googlebox", "iframe", "http://images.google.com/", "#1: Google Web site", "width=590px,height=350px,resize=1,scrolling=1,center=1", "recal")
Try changing the above to:
Code:
setTimeout(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")
}, 5000)
Where 5000 is in milliseconds, or 5 seconds.
Bookmarks