This page should automatically redirect in 10 seconds to a new page using a tiny piece of JavaScript code:

<script>
<!-- // hide from browsers that don't understand
function WaitToRedirect() {
   var TimeToWait = setTimeout("RedirectNow();", 10000);
}
function RedirectNow() {
   window.location.replace("redirection_target.htm");
}
{
WaitToRedirect();
}
// done hiding
-->
</script>

All the preceeding code was placed in the <head>...</head> section of the page. Use the “view source” feature of your browser to see the actual code.

Note that this method will replace this page with the redirection target in the page stack. This means that the browser viewing this page can’t return to it using the [Back] button. Hmmm... Maybe that’s a good thing?