Ok I see the problem- it's a permission error in IE. Basically, on your main page, you're calling dhtmlwindow.open() with an absolute URL to the page:
Code:
popwindow=dhtmlwindow.open("popwindow", "iframe", "http://musclegaintruth.com/windowcontents-test.htm", "ACCESS YOUR FREE GIFT BELOW!", "width=462px,height=379px,resize=0,scrolling=0,center=1","recal")
Try changing that to a relative URL:
Code:
popwindow=dhtmlwindow.open("popwindow", "iframe", "windowcontents-test.htm", "ACCESS YOUR FREE GIFT BELOW!", "width=462px,height=379px,resize=0,scrolling=0,center=1","recal")
Bookmarks