Is it possible for a visitor to my site to get stuck into a loop with the following frame breakout code? I have periodically had people appear to be refreshing the page every second (for hours at a time) and I'm wondering if it is me or them with the problem. Any help would be greatly appreciated.
<head>
<script type="text/javascript">
<!--
if( top!= self ){
top.location=self.document.location;
}
//-->
</script>
...