1<html>
2<head>
3<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
4<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
5<meta HTTP-EQUIV="Expires" CONTENT="-1">
6<link rel="shortcut icon" href="images/favicon.png">
7<link rel="icon" href="images/favicon.png">
8<script>
9var action = '<% get_parameter("wanaction"); %>';
10var restart_time;
11
12function restart_needed_time(second){
13	if('<% nvram_get("link_wan"); %>' == "1")
14		restart_time = 60;
15	else
16		restart_time = second;
17}
18
19function Callback(){
20	parent.showLoading(restart_time);
21	setTimeout("document.redirectForm.submit();", restart_time*1000);
22	return;
23}
24</script>
25</head>
26
27<body onLoad="Callback();">
28<% wan_action(); %>
29<form method="post" name="redirectForm" action="/index.asp" target="_parent">
30	<input type="hidden" name="flag" value="">
31</form>
32</body>
33</html>
34