<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>你访问的页面不存在或者删除！</title>
<style>
body{  }
.a{ font-size:14px; }
.b{ font-size:12px; color:#999999;}
.b a{ font-size:12px;text-decoration:none; color:#FF0000;}
.c{ text-align:center;}
.img{width:500px;height:250px;margin:0 auto;background:url(404.jpg) no-repeat top center;}
</style>
</head>

<body>

<div class="c">
	<div class="img"></div>
	<strong class="a">你访问的页面不存在或被删除！</strong><br/>
	<font class="b"><span id="bno">5</span>秒后自动返回首页........ 或者你可以直接进入<a href="/">网站首页</a></font> 
</div>

	<script>
function countdown(i){
document.getElementById('bno').innerHTML=i;
if(i==0){
window.location.href="http://"+window.location.host;
}else{
i--;
setTimeout("countdown("+i+")",1000);
}
}
countdown(5); //设置秒值
</script> 
</body>
</html>
