ever wonder how to automatically refresh a report every ...say 3 seconds? Just paste this into a HTML item in your report.
<script>
function reloadthispage()
{
t=setTimeout("promptButtonFinish()",3000);
}
reloadthispage();
</script>