You can add this Meta tag :

<meta http-equiv=”Refresh” content=”8;URL=http:// www.example.com/somepage.html”>

Calling A javaScript functionwith Time and Delay :

<body onload=”timer=setTimeout(‘callme()’,100)”>
<script language=”JavaScript”>
<!–
var time = null
function callme() {
window.location = ‘http://www.avancezone.com’
}
//–>
</script>

Insert The Body tag and the function CALLME will be call in 100ms and your page will be redirected to other .

To redirect the page immediately by script :

<script type="text/javascript">
<!--
window.location = "http://www.google.com/"
//-->
</script>