007-1.html (412B)
1 <!doctype html> 2 007-1 3 <script> 4 onunload = function() { 5 onunload = null; 6 parent.unload_fired = true; 7 setTimeout(function() { 8 parent.timeout_fired = true; 9 }, 100); 10 } 11 onload = function() { 12 if (!parent.loaded) { 13 parent.loaded = true; 14 setTimeout(parent.t.step_func( 15 function() { 16 location="007-2.html?" + Math.random(); 17 } 18 ), 100); 19 } 20 } 21 </script>