﻿<!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=utf-8" />
<title>404页面找不到了</title>
<script language="javascript" src="/js/jquery1.42.min.js"></script>
</head>
<style type="text/css">
div {
	margin:0 auto; width:509px; height:507px;text-align:center;
}
div p
{
font-size:30px;
}
</style>

<body>

<div>
<img src="/images/Error/404.jpg" width="300" height="299" />
<p>哎呀，页面找不到了！</p>
<p><a class="link" href="/" onclick="history.go(-1)"><span id="sec">5</span> 秒后返回首页</a>
</p>
</div>
	<script type="text/javascript">
	$(function () {            
	   setTimeout("lazyGo();", 1000);
	});
	function lazyGo() {
		var sec = $("#sec").text();
		$("#sec").text(--sec);
		if (sec > 0)
			setTimeout("lazyGo();", 1000);
		else
			window.location.href = "/";
	}
	</script>
</body>
</html>
