Hi, I recently set up ads on my site that use an iframe. They are only banner CPM ads and not full page/redirect ads. However, there seems to be something wrong with the code, that is, it keeps redirecting to a site called usagc.org. So, for this I've added a code that will prevent the redirection: <script type="text/javascript"> var prevent_bust = 0 window.onbeforeunload = function() { prevent_bust++ } setInterval(function() { if (prevent_bust > 0) { prevent_bust -= 2 window.top.location = '' } }, 1) die()</script> This stops the redirecting, but creates a new problem: you are trapped on that page. No links on the page will work at all. Seeing as how most people who want to stop the frame redirections use this, I'm guessing there's something wrong with this in particular. Google seems to have a 204 page that can be used in the code: window.top.location = 'http://clients1.google.com/generate_204' But still the same affect. So basically I seem to be half way to fixing it but I can't seem to get the code to only affect the iframe. Any help?