<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<HTML xmlns="http://www.w3.org/1999/xhtml"><HEAD>
<TITLE>404错误网页</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<SCRIPT>
window.onload=function(){
		numView("/");
}
	
function numView(url){
    var numSpan=document.getElementById("numspan");
    var i=5;
    var interval=window.setInterval(

	    function(){
			    (i>=1)?numSpan.innerHTML=i=i-1
						    :window.clearInterval(interval,goIndex(url))
	    }, 
    1000);
}

function goIndex(url){
	this.location.href=url;
}
</SCRIPT>

</HEAD>
<BODY>
<DIV><SPAN id=numspan>10</SPAN>秒后将跳转到 首页</DIV>
</BODY></HTML>

