René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

Reloading a page in intervals with JavaScript

<script type="text/javascript">
  if (typeof setTimeout != "undefined" && location.reload) {
    setTimeout('location.reload()', 60000); // 60 seconds
  }
</script>
See also the html meta tag.