Auto Reload

There is lots of ways to do this, but a JavaScript based auto reload is the easiest.  This page will reload every one minute. That gives you enough time to copy the code, when you paste it on your own page, you can set the reload time sooner or later as you want.
 

Cut and paste the source code of the above script here (Read  How to Cut N Paste for help)
 

<!-----------Cut----------->
<HTML>
<HEAD>
   <TITLE>Auto Reload</TITLE>
<SCRIPT>
<!--
function autoReload()
{
var timeID = setTimeout("location.href= document.URL", 60000)
//The number is the time limit, it is using miliseconds (1/1000 of one second), so 60000 miliseconds = 60 seconds.
}

//-->
</SCRIPT>
</HEAD>
<BODY onload="autoReload()">
</BODY>
</HTML>
<!-----------End----------->
IMPORTANT: The scripts provided in this page are free as long as you keep the credits in the code.  E-mail me or use Script Rebuild Service for additional help about Cut N Paste or to ask for a script that is just for you.

Post Your Script Home