just look at the sourcecode...
Code:
<script src="../jquery.js"></script>
<script>
$(document).ready(function() {
$("#stats").load("../../.././servercapacity/private/prvsro/cached.php");
var refreshId = setInterval(function() {
$("#stats").load("../../.././servercapacity/private/prvsro/cached.php");
}, 8000);
$.ajaxSetup({ cache: false });
});
</script>
for understanding: this function loads the page
/servercapacity/private/prvsro/cached.php every 8000ms and replaces the content of
#stats with the loaded content
btw this is the wrong section, use the web-dev forum next time (

)