views:

36

answers:

1

We're using Fancybox to throw up essentially an interstitial ad. The page loads, then Fancybox loads over it, and displays our ad content. For most ad content we've put up, this has worked (hand-coded links/images, DoubleClick content, etc). But ads from Burst Media seem to cause no end of headache.

As soon as Fancybox loads, the Burst ad takes over, and does it's document.write() to the page. This (as far as I can tell) dumps everything else, and displays only the ad content.

To make matters stranger, the same ad code works correctly in inline placed ads on our page.

The only thing I can think is that because the Burst content is missing an iframe, it's causing havoc on the page; but because it works in other places, I'm becoming frustrated and confused.

Any suggestions?

EDIT: Ad content comes from an admin where employees paste in the appropriate HTML. It is added to the page via PHP directly.

A: 

For those that may need it in the future, you do need an iframe, as @Pointy suggested; here's the template for the iframe portion:

<iframe src="http://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=rsb&amp;c=&lt;VALUE_OF_C&gt;&amp;pli=&lt;PLI_ID&gt;&amp;PluID=0&amp;w=300&amp;h=250&amp;ord=[timestamp]&amp;ifrm=2&amp;ucm=true&amp;z=0" width=300 height=250 marginwidth=0 marginheight=0 hspace=0 vspace=0 frameborder=0  scrolling=no bordercolor="#000000">
    <script src="http://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=rsb&amp;c=&lt;VALUE_OF_C&gt;&amp;pli=&lt;PLI_ID&gt;&amp;PluID=0&amp;w=300&amp;h=250&amp;ord=[timestamp]&amp;ucm=true&amp;z=0"&gt;&lt;/script&gt;
    <noscript>
        <a href="http://bs.serving-sys.com/BurstingPipe/BannerRedirect.asp?FlightID=&lt;PLI_ID&gt;&amp;Page=&amp;PluID=0&amp;Pos=5500" target="_blank"><img src="http://bs.serving-sys.com/BurstingPipe/BannerSource.asp?FlightID=1825049&amp;Page=&amp;PluID=0&amp;Pos=5500" border=0 width=300 height=250></a>
    </noscript>
</iframe>

Please note that essentially, the only difference for the iframe is that the src attribute has an ifrm=2 value included in the querystring. Everything else should be the same.

gms8994