http://downloads.netgear.com/files/GPL/GPL_Source_V361j_DM111PSP_series_consumer_rele...
[bcm963xx.git] / userapps / broadcom / cfm / html / rebootinfo.html
1 <html>
2 <head>
3 <META http-equiv="Pragma" CONTENT="no-cache">
4 <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">    
5 <meta name="description" content="DM111PSP">
6 <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
7 <title>Router Rebooting</title>
8 <style type="text/css">
9 BIG {
10          FONT-WEIGHT: bold; FONT-SIZE: 14px; FONT-FAMILY: Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif
11 }
12 H1 {
13         FONT-WEIGHT: bold; FONT-SIZE: 16px; BACKGROUND: white; COLOR: #09c; FONT-FAMILY: Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif
14 }
15
16 Body, TD {
17         FONT-SIZE: 12px; FONT-FAMILY: Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif
18 }
19
20 .num 
21 {
22         color: blue; font: bold 12pt "Courier New",Courier,serif;
23 }       
24
25 </style>
26 <script language="JavaScript" type="text/javascript">
27 <!-- Start Script
28 var pchar = "|";          // progress char
29 var maxchars = 60;  
30 var delay_time = 1500; // msecs
31 var charcount = 0;  
32 var finish_msg = "\Please check the LEDs to see if the Router is ready, \nthen click OK to re-connect.";
33
34
35
36 function Init()
37 {       
38         if (top.frames.length > 0){
39                 parent.footerfrm.location.href="clear.html";
40                 top.location.href = self.location.href;
41         }else
42                 updateProgress();
43 }
44
45 function updateProgress()
46 {
47                 var cf = document.forms[0];
48                 if (charcount < maxchars)
49                 {
50                         charcount ++;
51                         cf.progress.value = makeStr(charcount,pchar);
52                         status = " Progress: " + Math.floor(charcount/maxchars*100) + "%";
53                         window.focus();
54                         setTimeout("updateProgress()",delay_time);
55                 }
56                 else
57                 { 
58                         alert(finish_msg);
59                         top.location.href="/index.html";
60                 }
61 }
62
63 function makeStr(strSize, fillChar)
64 {
65         var temp = "";
66         for (i=0; i < strSize ; i ++)
67                 temp = temp + fillChar;
68         return temp;
69 }
70
71
72 // End Script --> 
73 </script>
74 </head>
75 <body bgcolor="#ffffff" onLoad="Init()">
76 <form>
77 <BR>
78 <TABLE border=0 width="100%">
79 <tr>
80         <td nowrap align="center"><h1>Router Rebooting</h1></td>
81 </tr>
82 </table>
83
84 <div align="center">
85
86 <table border=0 cellspacing=0 cellpadding=4>
87 <tr>
88  <td colspan="2" align="center"><BIG>Progress</bIG></td>
89 </tr>
90 <tr>
91  <td nowrap colspan="2">&nbsp;<input type="text" class="num" name="progress" size="60" value="">&nbsp;&nbsp;</td>
92 </tr>
93 <tr>
94  <td nowrap align="left"><B>0%</B></td>
95  <td nowrap align="right"><B>100%</B></td>
96 </tr>
97 <tr>
98  <td colspan="2" align="center"><bIG>Please wait...</bIG></td>
99 </tr>
100 </table>
101
102 </div>
103 </form>
104
105 </body>
106 </html>
107