16 |
|
<? if ($scroll == "on") { ?> |
17 |
|
<script language="javascript"><!-- |
18 |
|
function pScroll(){ |
19 |
< |
window.scrollBy(0,1); |
19 |
> |
window.scrollBy(0, 1); |
20 |
|
if (document.body.scrollTop >= document.body.scrollHeight - document.body.clientHeight - 1) { |
21 |
|
waitThenReload(); |
22 |
|
} |
23 |
|
setTimeout("pScroll();", 50); |
24 |
|
} |
25 |
|
function waitThenReload() { |
26 |
< |
setTimeout("location.reload();", 2000); |
26 |
> |
if (document.body.clientHeight + 100 > document.body.scrollHeight) { |
27 |
> |
setTimeout("location.reload();", 10000); |
28 |
> |
} |
29 |
> |
else { |
30 |
> |
location.reload(); |
31 |
> |
} |
32 |
|
} |
33 |
|
//--> |
34 |
|
</script> |