• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/www/sysdep/DSL-N55U-B/www/qis/
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
6<meta HTTP-EQUIV="Expires" CONTENT="-1">
7<link rel="stylesheet" type="text/css" href="../form_style.css">
8<link rel="stylesheet" type="text/css" href="qis_style.css">
9<style>
10span{
11	border:0px solid #FFFFFF;
12	color:#FFFFFF;
13	font-size:12px;
14	font-family:Arial, Helvetica, sans-serif;
15	/*width:27px;*/
16	text-align:right;
17	margin:0px auto;
18	ime-mode:disabled;
19}
20
21.black_line{
22	border: 1px solid #000000;
23	width:480px;
24	margin-left: 10px;
25}
26</style>
27<script type="text/JavaScript" src="/js/jquery.js"></script>
28<script>
29<% wanlink(); %>
30var sw_mode = '<% nvram_get("sw_mode"); %>';
31if((sw_mode == 2 || sw_mode == 3) && '<% nvram_get("wlc_psta"); %>' == 1)
32	sw_mode = 4;
33var w_Setting = "<% nvram_get("w_Setting"); %>";
34var auth_mode2 = '<% nvram_get("wl0_auth_mode_x"); %>';
35var wep_x2 = '<% nvram_get("wl0_wep_x"); %>';
36var key_x2 = '<% nvram_get("wl0_key"); %>';
37var wpa_mode2 = '<% nvram_get("wl0_wpa_mode"); %>';
38var auth_mode = '<% nvram_get("wl1_auth_mode_x"); %>';
39var wep_x = '<% nvram_get("wl1_wep_x"); %>';
40var key_x = '<% nvram_get("wl1_key"); %>';
41var wpa_mode = '<% nvram_get("wl1_wpa_mode"); %>';
42var reIP = '<% nvram_get("lan_ipaddr"); %>';
43var band5g_support = ("<% nvram_get("rc_support"); %>".search("5G") == -1) ? false : true;
44var transfer_mode = "<% nvram_get("dsltmp_transmode"); %>";
45var dsltmp_cfg_th3bb = "<% nvram_get("dsltmp_cfg_th3bb"); %>";
46var dsltmp_cfg_modulation = "<% nvram_get("dsltmp_cfg_modulation"); %>";
47var dsltmp_cfg_annex = "<% nvram_get("dsltmp_cfg_annex"); %>";
48var dsltmp_cfg_de17a = "<% nvram_get("dsltmp_cfg_de17a"); %>";
49var dsltmp_cfg_vdslprofile = "<% nvram_get("dsltmp_cfg_vdslprofile"); %>";
50var cfg_iptv_enable = "<%nvram_get("dsltmp_cfg_iptv_enable");%>";
51
52var iptv_atm_pvc_str_title = "";
53var iptv_atm_pvc_str = "";
54var iptv_ptm_pvc_str_title = "";
55var iptv_ptm_pvc_str = "";
56var dsltmp_cfg_iptv_pvclist = decodeURIComponent('<%nvram_char_to_ascii("", "dsltmp_cfg_iptv_pvclist");%>');
57var iptv_num_pvc_val = "<% nvram_get("dsltmp_cfg_iptv_num_pvc"); %>";
58
59//udpate iptv information
60if (iptv_num_pvc_val != "0" && iptv_num_pvc_val != "") {
61	var dsltmp_cfg_iptv_pvclist_row;
62	var dsltmp_cfg_iptv_pvclist_col;
63	var i, j;
64
65	iptv_atm_pvc_str_title = iptv_num_pvc_val + " IPTV PVC(s)";
66	iptv_ptm_pvc_str_title = iptv_num_pvc_val + " IPTV service(s)";
67
68	//<vpi>vci>proto>encap>vlanid
69	if(dsltmp_cfg_iptv_pvclist.charAt(0) == "<")	//rempve the 1st "<"
70		dsltmp_cfg_iptv_pvclist = dsltmp_cfg_iptv_pvclist.substr(1,dsltmp_cfg_iptv_pvclist.length);
71	dsltmp_cfg_iptv_pvclist_row = dsltmp_cfg_iptv_pvclist.split('<');
72
73	for(i=0; i<dsltmp_cfg_iptv_pvclist_row.length; i++) {
74		if(i > 0) {
75			iptv_atm_pvc_str += " + ";
76			iptv_ptm_pvc_str += " + ";
77		}
78		dsltmp_cfg_iptv_pvclist_col = dsltmp_cfg_iptv_pvclist_row[i].split('>');
79		for(j=0; j<dsltmp_cfg_iptv_pvclist_col.length; j++){
80			switch(j) {
81				case 0:	//vpi
82					iptv_atm_pvc_str += dsltmp_cfg_iptv_pvclist_col[j] + "/";
83					break;
84				case 1:	//vci
85					iptv_atm_pvc_str += dsltmp_cfg_iptv_pvclist_col[j] + ",";
86					break;
87				case 2:	//proto
88					if(dsltmp_cfg_iptv_pvclist_col[j] == 3) {
89						iptv_atm_pvc_str += "Bridged, ";
90						iptv_ptm_pvc_str += "Bridged, ";
91					}
92					else {
93						iptv_atm_pvc_str += ", ";
94						iptv_ptm_pvc_str += ", ";
95					}
96					break;
97				case 3:	//encap
98					if(dsltmp_cfg_iptv_pvclist_col[j] == 1)
99						iptv_atm_pvc_str += "VC-Mux";
100					else
101						iptv_atm_pvc_str += "LLC";
102					break;
103				case 4:	//vlan id
104					if(dsltmp_cfg_iptv_pvclist_col[j] != "") {
105						iptv_atm_pvc_str += "VLAN ID " + dsltmp_cfg_iptv_pvclist_col[j];
106						iptv_ptm_pvc_str += "VLAN ID " + dsltmp_cfg_iptv_pvclist_col[j];
107					}
108					break;
109			}
110		}
111	}
112}
113
114function QKfinish_load_body(){
115	parent.document.title = "<#Web_Title#> - <#QKSet_all_title#>";
116	parent.set_step("t3");
117	parent.document.getElementById("LoadingBar").style.visibility = 'hidden';
118	parent.document.getElementById("btn_gotoindex").style.visibility = "hidden";
119
120	if(sw_mode == "2"){
121		if('<% nvram_get("wlc_band"); %>' == 0){
122			auth_mode2 = '<% nvram_get("wl0.1_auth_mode_x"); %>';
123			wep_x2 = '<% nvram_get("wl0.1_wep_x"); %>';
124			document.form.wl0_ssid2.value = '<% nvram_char_to_ascii("WLANConfig11b", "wl0.1_ssid"); %>';
125			document.form.wl0_wpa_psk.value = '<% nvram_char_to_ascii("WLANConfig11b", "wl0.1_wpa_psk"); %>';
126		}
127		else{
128			auth_mode2 = '<% nvram_get("wl1.1_auth_mode_x"); %>';
129			wep_x2 = '<% nvram_get("wl1.1_wep_x"); %>';
130			document.form.wl1_ssid2.value = '<% nvram_char_to_ascii("WLANConfig11b", "wl1.1_ssid"); %>';
131			document.form.wl1_wpa_psk.value = '<% nvram_char_to_ascii("WLANConfig11b", "wl1.1_wpa_psk"); %>';
132		}
133	}
134
135	// Wireless Security
136	$("#ssid_2_item")[0].innerHTML = "<#QIS_finish_wireless_item1#>";
137	$("#ssid_2")[0].innerHTML = decodeURIComponent("<% nvram_char_to_ascii("", "wl0_ssid"); %>");
138	$("#ssid_5_item")[0].innerHTML = "<#QIS_finish_wireless_item1#>";
139	$("#ssid_5")[0].innerHTML = decodeURIComponent("<% nvram_char_to_ascii("", "wl1_ssid"); %>");
140	$("#security_item2")[0].innerHTML = "<#QIS_finish_wireless_item2#>";
141	$("#security_item5")[0].innerHTML = "<#QIS_finish_wireless_item2#>";
142
143	if(auth_mode2 == "open" && wep_x2 == "0"){
144		$("#security2")[0].innerHTML = "Open System";
145		$("#key2_block")[0].style.display = "none";
146	}/*else if(auth_mode2 == "open" && wep_x2 != "0"){
147		$("#security2")[0].innerHTML = "Open System";
148		$("#key2_item")[0].innerHTML = "<#WLANConfig11b_WEPKey_itemname#>";
149		if(key_x2 ==1)
150			$("#key2")[0].innerHTML = decodeURIComponent('<% nvram_get("wl0_key1"); %>');
151		else if(key_x2 ==2)
152			$("#key2")[0].innerHTML = decodeURIComponent('<% nvram_get("wl0_key2"); %>');
153		else if(key_x2 ==3)
154			$("#key2")[0].innerHTML = decodeURIComponent('<% nvram_get("wl0_key3"); %>');
155		else if(key_x2 ==4)
156			$("#key2")[0].innerHTML = decodeURIComponent('<% nvram_get("wl0_key4"); %>');
157	}else if(auth_mode2 == "shared" && key_x2 != "0"){
158		$("#security2")[0].innerHTML = "Shared Key";
159		$("#key2_item")[0].innerHTML = "<#WLANConfig11b_WEPKey_itemname#>";
160		if(key_x2 ==1)
161			$("#key2")[0].innerHTML = decodeURIComponent('<% nvram_get("wl0_key1"); %>');
162		else if(key_x2 ==2)
163			$("#key2")[0].innerHTML = decodeURIComponent('<% nvram_get("wl0_key2"); %>');
164		else if(key_x2 ==3)
165			$("#key2")[0].innerHTML = decodeURIComponent('<% nvram_get("wl0_key3"); %>');
166		else if(key_x2 ==4)
167			$("#key2")[0].innerHTML = decodeURIComponent('<% nvram_get("wl0_key4"); %>');
168	}
169	else if(auth_mode2 == "psk"){
170		$("#security2")[0].innerHTML = "WPA-Personal - TKIP";
171		$("#key2_item")[0].innerHTML = "<#Network_key#>";
172		$("#key2")[0].innerHTML = decodeURIComponent(document.form.wl0_wpa_psk.value);
173	}
174	else if(auth_mode2 == "psk2"){
175		$("#security2")[0].innerHTML = "WPA2-Personal - AES";
176		$("#key2_item")[0].innerHTML = "<#Network_key#>";
177		$("#key2")[0].innerHTML = decodeURIComponent(document.form.wl0_wpa_psk.value);
178	}*/
179	else if(auth_mode2 == "psk2"){
180		$("#security2")[0].innerHTML = "WPA2-Personal - AES";
181		$("#key2_item")[0].innerHTML = "<#Network_key#>";
182		$("#key2")[0].innerHTML = decodeURIComponent("<% nvram_char_to_ascii("", "wl0_wpa_psk"); %>");
183	}
184	else{
185		$("#freqtitle2")[0].style.display = "none";
186		$("#ssid2_block")[0].style.display = "none";
187		$("#key2_block")[0].style.display = "none";
188		$("#security2_block")[0].style.display = "none";
189	}
190
191	if(!band5g_support){
192		$("#desc2g")[0].style.display = "none";
193		$("#freqtitle5")[0].style.display = "none";
194		$("#ssid5_block")[0].style.display = "none";
195		$("#key5_block")[0].style.display = "none";
196		$("#security5_block")[0].style.display = "none";
197	}
198	else{
199		if(auth_mode == "open" && wep_x == "0"){
200			$("#security5")[0].innerHTML = "Open System";
201			$("#key5_block")[0].style.display = "none";
202		}/*
203		else if(auth_mode == "open" && wep_x != "0"){
204			$("#security5")[0].innerHTML = "Open System";
205			$("#key5_item")[0].innerHTML = "<#WLANConfig11b_WEPKey_itemname#>";
206			if(key_x ==1)
207				$("#key5")[0].innerHTML = decodeURIComponent('<% nvram_get("wl1_key1"); %>');
208			else if(key_x ==2)
209				$("#key5")[0].innerHTML = decodeURIComponent('<% nvram_get("wl1_key2"); %>');
210			else if(key_x ==3)
211				$("#key5")[0].innerHTML = decodeURIComponent('<% nvram_get("wl1_key3"); %>');
212			else if(key_x ==4)
213				$("#key5")[0].innerHTML = decodeURIComponent('<% nvram_get("wl1_key4"); %>');
214		}else if(auth_mode == "shared" && key_x != "0"){
215			$("#security5")[0].innerHTML = "Shared Key";
216			$("#key5_item")[0].innerHTML = "<#WLANConfig11b_WEPKey_itemname#>";
217			if(key_x ==1)
218				$("#key5")[0].innerHTML = decodeURIComponent('<% nvram_get("wl1_key1"); %>');
219			else if(key_x ==2)
220				$("#key5")[0].innerHTML = decodeURIComponent('<% nvram_get("wl1_key2"); %>');
221			else if(key_x ==3)
222				$("#key5")[0].innerHTML = decodeURIComponent('<% nvram_get("wl1_key3"); %>');
223			else if(key_x ==4)
224				$("#key5")[0].innerHTML = decodeURIComponent('<% nvram_get("wl1_key4"); %>');
225		}
226		else if(auth_mode == "psk"){
227			$("#security5")[0].innerHTML = "WPA-Personal - TKIP";
228			$("#key5_item")[0].innerHTML = "<#Network_key#>";
229			$("#key5")[0].innerHTML = decodeURIComponent(document.form.wl1_wpa_psk.value);
230		}
231		else if(auth_mode == "psk2"){
232			$("#security5")[0].innerHTML = "WPA2-Personal - AES";
233			$("#key5_item")[0].innerHTML = "<#Network_key#>";
234			$("#key5")[0].innerHTML = decodeURIComponent(document.form.wl1_wpa_psk.value);
235		}*/
236		else if(auth_mode == "psk2"){
237			$("#security5")[0].innerHTML = "WPA2-Personal - AES";
238			$("#key5_item")[0].innerHTML = "<#Network_key#>";
239			$("#key5")[0].innerHTML = decodeURIComponent("<% nvram_char_to_ascii("", "wl1_wpa_psk"); %>");
240		}
241		else{
242			$("#freqtitle5")[0].style.display = "none";
243			$("#ssid5_block")[0].style.display = "none";
244			$("#key5_block")[0].style.display = "none";
245			$("#security5_block")[0].style.display = "none";
246		}
247	}
248
249	// Connection Status
250	$("#mac_item")[0].innerHTML = "MAC";
251	$("#mac")[0].innerHTML = '<% nvram_get("lan_hwaddr"); %>';
252
253	if (0) {
254		$("#wantype_item")[0].innerHTML = "<#wan_type#>";
255
256		if(wanlink_type() == "dhcp")
257			var wanlink_type_conv = "<#BOP_ctype_title1#>";
258		else 	if(wanlink_type() == "pppoe" ||wanlink_type() == "PPPOE" )
259			var wanlink_type_conv = "PPPoE";
260		else 	if(wanlink_type() == "static")
261			var wanlink_type_conv = "<#BOP_ctype_title5#>";
262		else 	if(wanlink_type() == "pptp")
263			var wanlink_type_conv = "PPTP";
264		else 	if(wanlink_type() == "l2tp")
265			var wanlink_type_conv = "L2TP";
266		else
267			var wanlink_type_conv = wanlink_type();
268	}
269	else {
270		if(transfer_mode == "atm"){
271
272			$("#wantype_item")[0].innerHTML = "ADSL (ATM) <#Layer3Forwarding_x_ConnectionType_itemname#>";
273			var pvc_type = "<% nvram_get("dsl0_proto"); %>";
274			var wanlink_type_conv = "";
275
276			if (pvc_type == "pppoe")
277				wanlink_type_conv = "PPPoE";
278			else if (pvc_type == "pppoa")
279				wanlink_type_conv = "PPPoA";
280			else if (pvc_type == "mer")
281				wanlink_type_conv = "MER";
282			else if (pvc_type == "bridge")
283				wanlink_type_conv = "Bridge";
284			else if (pvc_type == "ipoa")
285				wanlink_type_conv = "IPoA";
286
287			$("#wanvpivci_item")[0].innerHTML = "VPI / VCI / <#prtcl_JS_encmode#>";
288			var tmp_str = "<% nvram_get("dsl0_vpi"); %> / <% nvram_get("dsl0_vci"); %>";
289	
290			var encap_val = "<% nvram_get("dsl0_encap"); %>";
291			if (encap_val == "1")
292				tmp_str += " / VC-Mux";
293			else
294				tmp_str += " / LLC";
295
296			$("#wanvpivci")[0].innerHTML = tmp_str;
297
298			if(iptv_num_pvc_val >0){	//iptv information
299				document.getElementById("iptv_service").style.display = "";
300				document.getElementById("iptv_pvc_item").innerHTML = iptv_atm_pvc_str_title;
301				document.getElementById("iptv_pvc").innerHTML = iptv_atm_pvc_str;
302			}
303		}
304		else{	//transmode "ptm"
305
306			$("#wantype_item")[0].innerHTML = "VDSL (PTM) <#Layer3Forwarding_x_ConnectionType_itemname#>";
307			var pvc_type = "<% nvram_get("dsl8_proto"); %>";
308			var wanlink_type_conv = "";
309
310			if (pvc_type == "pppoe")
311				wanlink_type_conv = "PPPoE";
312			else if (pvc_type == "dhcp")
313				wanlink_type_conv = "<#BOP_ctype_title1#>";
314			else if (pvc_type == "bridge")
315				wanlink_type_conv = "Bridge";
316			else if (pvc_type == "static")
317				wanlink_type_conv = "<#BOP_ctype_title5#>";
318
319			if("<% nvram_get("dsltmp_cfg_vid"); %>" != ""){
320				$("#wanvpivci_item")[0].innerHTML = "<#WANVLANIDText#>";
321				$("#wanvpivci")[0].innerHTML = "<% nvram_get("dsltmp_cfg_vid"); %>";
322			}
323
324			if(iptv_num_pvc_val >0){	//iptv information
325				document.getElementById("iptv_service").style.display = "";
326				document.getElementById("iptv_pvc_item").innerHTML = iptv_ptm_pvc_str_title;
327				document.getElementById("iptv_pvc").innerHTML = iptv_ptm_pvc_str;
328			}
329		}
330	}
331
332	if(wanlink_type_conv == "")
333			document.getElementById("wanvpivci_tr").style.display = "none";	
334
335	$("#wantype")[0].innerHTML = wanlink_type_conv;
336	if('<% nvram_get("autodet_auxstate"); %>' == '6')
337		$("#wantype")[0].innerHTML += '<input type="button" id="nextButton" value="<#CTL_modify#>" onclick="redirect_page(\'internet_type\');" class="button_gen" style="margin-left:20px;">';
338
339	//$("#wanip_item")[0].innerHTML = "WAN IP";
340	//$("#wanip")[0].innerHTML = wanlink_ipaddr();
341	$("#lanip_item")[0].innerHTML = "LAN IP";
342	$("#lanip")[0].innerHTML = reIP;
343
344	// System account
345	$("#account_item")[0].innerHTML = "<#QIS_finish_admin_item1#>";
346	$("#account")[0].innerHTML = '<% nvram_get("http_username"); %>';
347	$("#password_item")[0].innerHTML = "<#QIS_finish_admin_item2#>";
348	$("#password")[0].innerHTML = '<% nvram_get("http_passwd"); %>';
349}
350
351function gotoASUS(){
352	parent.location.href = "http://www.asus.com/support/";
353}
354
355function goto_index(){
356	parent.document.getElementById("btn_gotoindex").onclick = "";
357	parent.document.getElementById("btn_gotoindex").style.cursor = "";
358	parent.document.getElementById("btn_gotoindex").className = "m_qis_r_blocked";
359	
360	var wait_time = 40;
361	if(parent.sysReboot) {
362		wait_time = parent.rebootTime;
363	}
364	else {
365		document.restartForm.action_script.value = "restart_dsl_wireless 0;";
366		if(document.restartForm.dslx_transmode.value != transfer_mode) {
367			document.restartForm.dslx_transmode.value = transfer_mode;
368			parent.restartDSLSetting = true;
369		}
370		if(dsltmp_cfg_th3bb == 1) {
371			document.restartForm.dslx_modulation.value = dsltmp_cfg_modulation;
372			document.restartForm.dslx_annex.value = dsltmp_cfg_annex;
373			parent.restartDSLSetting = true;
374		}
375		if(dsltmp_cfg_de17a == 1) {
376			document.restartForm.dslx_vdsl_profile.value = dsltmp_cfg_vdslprofile;
377			parent.restartDSLSetting = true;
378		}
379		if(parent.restartDSLSetting) {
380			document.restartForm.action_script.value = "restart_dsl_setting;".concat(document.restartForm.action_script.value);
381			wait_time += 45;
382		}
383	}
384	parent.showLoading(wait_time);
385	document.restartForm.action_wait.value = wait_time;
386	document.restartForm.flag.value = "";
387	document.restartForm.submit();
388}
389
390function gotoAdvSetting(){
391	parent.location = "/Advanced_Wireless_Content.asp";
392}
393
394function addBookmarkForBrowser(sTitle) {
395	 sTitle = sTitle+" - "+reIP;
396
397   if(document.all)
398      window.external.addFavorite('http://'+reIP, sTitle);
399   else if(window.sidebar && window.sidebar.addPanel)
400      window.sidebar.addPanel(sTitle, 'http://'+reIP, "");
401   else{
402			addBookmarkForBrowser = function(){
403				alert("<#Browser_action_not_support_addfavorite#>");
404			}
405   }
406}
407
408function translate_auth(flag){
409	if(flag == "open")
410		return "Open System";
411	else if(flag == "shared")
412		return "Shared Key";
413	else if(flag == "psk")
414		return "WPA-Personal";
415	else if(flag == "psk2")
416 		return "WPA2-Personal";
417	else if(flag == "pskpsk2")
418		return "WPA-Auto-Personal";
419	else
420		return "unknown Auth";
421}
422
423function redirect_page(redirect_flag){
424	document.redirectForm.action = "/qis/QIS_"+redirect_flag+".htm";
425	document.redirectForm.submit();
426}
427</script>
428</head>
429
430<body onLoad="QKfinish_load_body();" >
431<form method="post" name="redirectForm" action="" target="">
432<input type="hidden" name="prev_page" value="">
433<input type="hidden" name="current_page" value="">
434<input type="hidden" name="next_page" value="">
435<input type="hidden" name="action_mode" value="">
436<input type="hidden" name="action_script" value="">
437<input type="hidden" name="action_wait" value="">
438</form>
439<div class="QISmain">
440		<div>
441			<table width="730px">
442				<tr>
443					<td align="left">
444						<span class="description_down"><#qis_finish_title1#></span>
445					</td>
446				</tr>
447				<tr id="home_button">
448					<td align="right">&nbsp;</td>
449				</tr>
450			</table>
451		</div>
452		<div style="margin:5px;"><img style="width: 720px; *width: 710px; height: 2px;" src="/images/New_ui/export/line_export.png"></div>
453<br/>
454<p class="QISGeneralFont" style="margin-top:-5px;"><#QIS_finish_Desc#></p>
455<br/>
456<table id="tblsetting_1" class="QISform_finish" width="400" border=0 align="center" cellpadding="5" cellspacing="0" style="margin-top:-10px;">
457	<tr id="freqtitle2">
458		<td align="left" colspan="4" style="color:#5AD;font-size:16px; border-bottom:1px dashed #AAA;"><#menu5_1#> <span style="color:#5AD;" id="desc2g">(2.4GHz)</span></td>
459	</tr>
460	<tr id="ssid2_block">
461	  <th width="180"><span id="ssid_2_item"></span></th>
462	  <td class="QISformtd" width="300px">
463			<span id="ssid_2"></span>
464	  </td>
465	</tr>
466	<tr id="key2_block">
467	  <th width="180"><span id="key2_item"></span></th>
468	  <td class="QISformtd">
469			<span id="key2"></span>
470	  </td>
471	</tr>
472	<tr id="security2_block">
473	  <th width="180"><span id="security_item2"></span></th>
474	  <td class="QISformtd">
475			<span id="security2"></span>
476	  </td>
477	</tr>
478
479	<tr id="freqtitle5">
480		<td align="left" colspan="4" style="color:#5AD;font-size:16px; border-bottom:1px dashed #AAA;"><#menu5_1#> <span style="color:#5AD;">(5GHz)</span></td>
481	</tr>
482	<tr id="ssid5_block">
483	  <th width="180"><span id="ssid_5_item"></span></th>
484	  <td class="QISformtd">
485			<span id="ssid_5"></span>
486	  </td>
487	</tr>
488	<tr id="key5_block">
489	  <th width="180"><span id="key5_item"></span></th>
490	  <td class="QISformtd">
491			<span id="key5"></span>
492	  </td>
493	</tr>
494	<tr id="security5_block">
495	  <th width="180"><span id="security_item5"></span></th>
496	  <td class="QISformtd">
497			<span id="security5"></span>
498	  </td>
499	</tr>
500
501	<tr>
502		<td align="left" colspan="4" style="color:#5AD;font-size:16px; border-bottom:1px dashed #AAA;">WAN</td>
503	</tr>
504	<tr>
505	  <th width="180"><span id="wantype_item"></span></th>
506	  <td class="QISformtd">
507			<span id="wantype"></span>
508	  </td>
509	</tr>
510
511	<tr id="wanvpivci_tr">
512	  <th width="180"><span id="wanvpivci_item"></span></th>
513	  <td class="QISformtd">
514			<span id="wanvpivci"></span>
515	  </td>
516	</tr>
517<!--
518	<tr>
519	  <th width="180"><span id="wanip_item"></span></th>
520	  <td class="QISformtd">
521			<span id="wanip"></span>
522	  </td>
523	</tr>
524-->
525	<tr id="iptv_service" style="display:none;">
526		<th width="180"><span id="iptv_pvc_item"></span></th>
527		<td class="QISformtd">
528			<span id="iptv_pvc"></span>
529		</td>
530	</tr>
531	<tr>
532		<td align="left" colspan="4" style="color:#5AD;font-size:16px; border-bottom:1px dashed #AAA;">LAN</td>
533	</tr>
534	<tr>
535	  <th width="180"><span id="lanip_item"></span></th>
536	  <td class="QISformtd">
537			<span id="lanip"></span>
538	  </td>
539	</tr>
540	<tr>
541	  <th width="180"><span id="mac_item"></span></th>
542	  <td class="QISformtd">
543			<span id="mac"></span>
544	  </td>
545	</tr>
546
547	<tr style="display:none;">
548	  <th width="180"><span id="account_item"></span></th>
549	  <td class="QISformtd">
550			<span id="account"></span>
551	  </td>
552	</tr>
553	<tr style="display:none;">
554	  <th width="180"><span id="password_item"></span></th>
555	  <td class="QISformtd">
556			<span id="password"></span>
557	  </td>
558	</tr>
559</table>
560
561<div class="apply_gen" style="margin-top:5px">
562	<input type="button" id="nextButton" value="<#CTL_next#>" onclick="goto_index();" class="button_gen">
563</div>
564
565<form name="form" style="display:none;">
566<input type="hidden" name="wl0_ssid2" value="<% nvram_char_to_ascii("WLANConfig11b", "wl0_ssid"); %>">
567<input type="hidden" name="wl1_ssid2" value="<% nvram_char_to_ascii("WLANConfig11b", "wl1_ssid"); %>">
568<input type="hidden" name="wl0_wpa_psk" value="<% nvram_char_to_ascii("WLANConfig11b", "wl0_wpa_psk"); %>">
569<input type="hidden" name="wl1_wpa_psk" value="<% nvram_char_to_ascii("WLANConfig11b", "wl1_wpa_psk"); %>">
570</form>
571
572<iframe name="hidden_frame" id="hidden_frame" width="0" height="0" frameborder="0"></iframe>
573
574<form method="post" name="restartForm" action="/start_apply2.htm" target="hidden_frame">
575	<input type="hidden" name="flag" value="finishQIS">
576	<input type="hidden" name="current_page" value="/qis/QIS_finish.htm">
577	<input type="hidden" name="next_page" value="/index.asp">
578	<input type="hidden" name="action_mode" value="apply">
579	<input type="hidden" name="action_script" value="reboot">
580	<input type="hidden" name="action_wait" value="0">
581	<input type="hidden" name="x_Setting" value="1">
582	<input type="hidden" name="dslx_transmode" value="<% nvram_get("dslx_transmode"); %>">
583	<input type="hidden" name="dslx_ginp" value="<% nvram_get("dsltmp_cfg_ginp"); %>">
584	<input type="hidden" name="dslx_modulation" value="<% nvram_get("dslx_modulation"); %>">
585	<input type="hidden" name="dslx_annex" value="<% nvram_get("dslx_annex"); %>">
586	<input type="hidden" name="dslx_vdsl_profile" value="<% nvram_get("dslx_vdsl_profile"); %>">
587</form>
588
589</body>
590</html>
591