Forum Moderators: open
<META HTTP-EQUIV="Refresh" CONTENT="5; URL=redirect_page.html">
Or some javascript:
document.location.href = 'redirect_page.html';
Or if you're like me, a PHP redirect using header (if you have php ;)):
header("Location: redirect_page.html");
As you can see there are many choices. I would go with the last one if you can, but if not there are other solutions out there as well.
Good luck!