How do I force a page to reload?
The easiest way to do this is by putting a <meta> inside the >head< tags. This example would reload the page in about 60 seconds:
<meta http-equiv="refresh" content="60" />
This can also be accomplished in JavaScript:
setTimeout("location.href = this.href", 60*1000)