• 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<script type="text/JavaScript" src="/state.js"></script>
10<script type="text/JavaScript" src="/general.js"></script>
11<script type="text/JavaScript" src="/validator.js"></script>
12<style>
13span{
14	border:0px solid #FFFFFF;
15	color:#FFFFFF;
16	font-size:14px;
17	font-family:Arial, Helvetica, sans-serif;
18	/*width:27px;*/
19	text-align:right;
20	margin:0px auto;
21	ime-mode:disabled;
22}
23.stb_msg{
24	font-size:12px;
25	font-weight:bolder;
26	color:#FFCC00;
27}
28#DE_ISP_note{
29	font-size:12px;
30	font-family:Arial, Helvetica, sans-serif;
31	text-align:left;
32	margin-left:75px;	
33	margin-top:-10px;
34}
35.isp_note_title{
36	color:#FFCC00;
37}
38.isp_note{	
39	margin-top:5px;
40	line-height:100%;
41}
42.account_format{
43	margin-top:5px;
44	margin-left:30px;
45}
46.num2{
47	color:#569AC7;
48	font-weight: bold;
49}
50.num1{
51	color:#CCFF00;
52	font-weight: bold;
53}
54</style>
55<script type="text/JavaScript" src="jstz.min.js"></script>
56<script>
57
58var ISP_List;
59var ISP_List_IPTV;
60var RAW_ISP_List = [<% get_isp_list("/www/ISP_List.txt"); %>];
61var RAW_ISP_List_IPTV = [<% get_isp_list("/www/ISP_List_IPTV.txt"); %>];
62var RAW_ISP_PTM_List = [<% get_isp_list("/www/ISP_PTM_List.txt"); %>];
63var RAW_ISP_PTM_List_IPTV = [<% get_isp_list("/www/ISP_PTM_List_IPTV.txt"); %>];
64
65var w_Setting = "<% nvram_get("w_Setting"); %>";
66var detect_status = "<% nvram_get("dsltmp_autodet_state"); %>";
67var prctl_str = "default";
68var prctl_val = "";
69var gvt_note = "";
70var vpi_val = "<% nvram_get("dsltmp_autodet_vpi"); %>";
71var vci_val = "<% nvram_get("dsltmp_autodet_vci"); %>";
72var encap_val = "<% nvram_get("dsltmp_autodet_encap"); %>";
73var vlanid_val = "";	//tmp
74var wan_type = "<%nvram_get("dsltmp_autodet_wan_type");%>";
75
76if(detect_status == "pppoe") {
77	prctl_str = "PPPoE";
78	prctl_val = "0";
79}
80else {
81	prctl_str = "PPPoA";
82	prctl_val = "1";
83}
84
85var encap_str = "LLC";
86if (encap_val == "1") encap_str = "VC-Mux";
87
88function QKfinish_load_body(){
89	parent.document.title = "<#Web_Title#> - <#QKSet_all_title#>";
90	parent.set_step("t2");
91
92	if(detect_status == "pppoe")
93		document.form.dsltmp_qis_proto.value = "pppoe";
94	else
95		document.form.dsltmp_qis_proto.value = "pppoa";
96
97	//Brazil timezone GMT-03:00
98	//India timezone GMT+05:30
99	var timezone = jstz.determine_timezone();
100	var timez = timezone.offset();
101
102	if (vpi_val == "0" && vci_val == "35" && encap_val == "0" && detect_status == "pppoe" && timez == "-03:00")
103	{	//Brazil - GVT
104		gvt_note = "<br><br>" + "(<#isp_br_gvt_note#>)"
105		document.getElementById('hint_msg').innerHTML = gvt_note;
106	}
107	else if (vpi_val == "0" && vci_val == "35" && encap_val == "0" && detect_status == "pppoe" && timez == "+05:30")
108	{	//India - BSNL (PPPOE). This will also change Dada Infosys and HCL Infinet Ltd's MTU to 1442, but it's ok.
109		document.form.dsltmp_qis_pppoe_mtu.value = "1442";
110	}
111	else if (vpi_val == "0" && vci_val == "35" && encap_val == "0" && detect_status == "pppoa" && timez == "+05:30")
112	{	//India - BSNL (PPPOA)
113		document.form.dsltmp_qis_pppoe_mtu.value = "1442";
114	}
115	else if (vpi_val == "0" && vci_val == "32" && encap_val == "0" && detect_status == "pppoe" && timez == "+05:30")
116	{	//India - MTNL (PPPOE)
117		document.form.dsltmp_qis_pppoe_mtu.value = "1442";
118	}
119	else if (vpi_val == "0" && vci_val == "32" && encap_val == "0" && detect_status == "pppoa" && timez == "+05:30")
120	{	//India - MTNL (PPPOA)
121		document.form.dsltmp_qis_pppoe_mtu.value = "1442";
122	}
123
124	if(wan_type == "ATM")
125	{
126		document.form.dsltmp_transmode.value = "atm";
127		document.form.prev_page.value = "/qis/QIS_manual_setting.htm";
128		ISP_List = RAW_ISP_List;
129		ISP_List_IPTV = RAW_ISP_List_IPTV;
130	}
131	else //PTM
132	{
133		document.form.dsltmp_transmode.value = "ptm";
134		document.form.prev_page.value = "/qis/QIS_PTM_manual_setting.htm";
135		ISP_List = RAW_ISP_PTM_List;
136		ISP_List_IPTV = RAW_ISP_PTM_List_IPTV;
137	}
138
139	showHideIPTVList(false);
140	if(haveIPTVService()) {
141		showhide("iptv_manual_setting", 1);		
142	}
143	else {
144		showhide("iptv_manual_setting", 0);
145	}
146	showhide("STBPortMsg", 0);
147	
148	DE_ISP_note_detect();
149}
150
151function DE_ISP_note_detect(){
152	if(wan_type == "ATM" && vpi_val == "1" && vci_val == "32" && prctl_str == "PPPoE" && encap_str == "LLC"){
153		//ATM, VPI: 1/ VCI: 32/ Protocol: PPPoE/ Encap: LLC 
154		document.getElementById("DE_ISP_note").style.display="";
155		document.getElementById("DE_ISP_title1").style.display="";
156		document.getElementById("Deutsche_Telekom").style.display="";
157		document.getElementById("Deutsche_1n1_ATM").style.display="";
158		document.getElementById("DE_ISP_title2").style.display="none";
159		document.getElementById("Deutsche_NetCologne").style.display="none";
160			
161	}
162	else if(wan_type == "ATM" && vpi_val == "8" && vci_val == "35" && prctl_str == "PPPoE" && encap_str == "LLC"){
163		//ATM, VPI: 8/ VCI: 35/ Protocol: PPPoE/ Encap: LLC	
164		document.getElementById("DE_ISP_note").style.display="";
165		document.getElementById("DE_ISP_title1").style.display="none";
166		document.getElementById("Deutsche_Telekom").style.display="none";
167		document.getElementById("Deutsche_1n1_ATM").style.display="none";
168		document.getElementById("DE_ISP_title2").style.display="";
169		document.getElementById("Deutsche_NetCologne").style.display="";
170	}
171	else
172		document.getElementById("DE_ISP_note").style.display="none";
173}
174
175function validForm(){
176		if(document.form.dsltmp_qis_pppoe_username.value.length <= 0){
177			alert("<#WANJS9Text#>.");
178			document.form.dsltmp_qis_pppoe_username.focus();
179			return false;
180		}
181		if(document.form.dsltmp_qis_pppoe_passwd.value.length <= 0){
182			alert("<#WANJS9Text#>.");
183			document.form.dsltmp_qis_pppoe_passwd.focus();
184			return false;
185		}
186		if(!validator.string(document.form.dsltmp_qis_pppoe_username)
187		|| !validator.string(document.form.dsltmp_qis_pppoe_passwd)
188		) {
189			alert("return false: "+document.form.dsltmp_qis_pppoe_username.value+"/"+document.form.dsltmp_qis_pppoe_passwd.value);
190			return false;
191		}
192		if(document.form.dsltmp_qis_pppoe_passwd.value != document.form.confirm_cfg_pppoe_passwd.value){
193			alert("<#File_Pop_content_alert_desc7#>");
194			document.form.dsltmp_qis_pppoe_passwd.focus();
195			return false;
196		}
197	return true;
198}
199
200function submitForm(){
201	if(validForm()){
202			document.form.next_page.value = "/qis/QIS_wireless.htm";
203			if(document.form.dsltmp_cfg_iptv_enable.value == "1"){
204				if(valid_ISP())
205					setIptvNumPvc();
206				else{
207					document.form.ISP.focus();
208					return false;	
209				}
210			}
211			document.form.submit();
212	}
213}
214
215function haveIPTVService() {
216	//compare detection result with isp list
217	for(var i = 0; i < ISP_List.length; i++){
218		if(wan_type == "ATM") {
219			if(vpi_val == ISP_List[i][6]	//vpi
220				&& vci_val == ISP_List[i][7]	//vci
221				&& prctl_val == ISP_List[i][8]	//proto
222				&& encap_val == ISP_List[i][9]	//encap
223				&& (ISP_List[i][12] != "" || ISP_List[i][13] != "")	//mr, iptv idx
224			) {
225				return true;
226			}
227		}
228		else {	//PTM
229			if(prctl_val == ISP_List[i][8]	//proto
230				&& vlanid_val == ISP_List[i][10]	//vlan id
231				&& (ISP_List[i][12] != "" || ISP_List[i][13] != "")	//mr, iptv idx
232			) {
233				return true;
234			}
235		}
236	}
237
238	return false;
239}
240
241function showHideIPTVList(iptv_enable) {
242	if(iptv_enable.checked) {
243		document.form.dsltmp_cfg_iptv_enable.value = "1";
244		document.getElementById("special_ISP_img").style.display = "";
245		document.getElementById("ISP_table").style.visibility = "visible";
246		showCountryList();
247		showISPList("");
248	}
249	else {
250		document.form.dsltmp_cfg_iptv_enable.value = "0";
251		document.getElementById("special_ISP_img").style.display = "none";
252		document.getElementById("ISP_table").style.visibility = "hidden";
253		showhide("STBPortMsg", 0);
254	}
255}
256
257function showCountryList(){
258	var code = "";
259	var showed_country = "";
260
261	code +="<select name='country' onchange='showISPList(this.value);' class='input_option'>";
262	code +="<option value='default'><#Select_menu_default#></option>";
263	for(var i = 0; i < ISP_List.length; i++){
264		if(ISP_List[i][5] == "")
265			continue;
266
267		if(prctl_val == ISP_List[i][8])  {	//proto
268			if(wan_type == "ATM") {
269				if(vpi_val == ISP_List[i][6]	//vpi
270					&& vci_val == ISP_List[i][7]	//vci
271					&& encap_val == ISP_List[i][9]	//encap
272				) {
273					if(showed_country != ISP_List[i][1]){
274						code +="<option value='"+ISP_List[i][1];
275						code +="'>"+ISP_List[i][2]+"</option>";
276						showed_country = ISP_List[i][1];
277					}
278				}
279			}
280			else {	//PTM
281				if(vlanid_val == ISP_List[i][10]) {	//vlan id
282					if(showed_country != ISP_List[i][1]){
283						code +="<option value='"+ISP_List[i][1];
284						code +="'>"+ISP_List[i][2]+"</option>";
285						showed_country = ISP_List[i][1];
286					}
287				}
288			}
289		}
290	}
291	code +="</select>";
292	document.getElementById("CountryList").innerHTML = code;
293}
294
295function showISPList(country){
296	var code = "";
297	var showed_isp = "";
298	var first_element = 0;
299	var sel_idx = 0;
300
301	code +="<select id='ISP' name='ISP' onChange='ChgSVC(this.value);' class='input_option'>";
302	code +="<option value='default'><#Select_menu_default#></option>";
303	for(var i = 0; i < ISP_List.length; i++){
304		if(country == ISP_List[i][1]){
305			if(ISP_List[i][5] == "")
306				continue;
307			if(ISP_List[i][12] == "" && ISP_List[i][13] == "")	//no iptv service
308				continue;			
309
310			if(prctl_val == ISP_List[i][8])  {	//proto
311				if(wan_type == "ATM") {
312					if(vpi_val == ISP_List[i][6]	//vpi
313						&& vci_val == ISP_List[i][7]	//vci
314						&& encap_val == ISP_List[i][9]	//encap
315					) {
316						if (first_element==0) {
317							first_element=1;
318							sel_idx = i;
319							code +="<option value='"+ISP_List[i][0]+"' selected='selected'>"+ISP_List[i][4]+", "+ISP_List[i][5]+"</option>";
320						}
321						else {
322							code +="<option value='"+ISP_List[i][0]+"'>"+ISP_List[i][4]+", "+ISP_List[i][5]+"</option>";
323						}
324					}
325				}
326				else {	//PTM
327					if(vlanid_val == ISP_List[i][10]) {	//vlan id
328						if (first_element==0) {
329							first_element=1;
330							code +="<option value='"+ISP_List[i][0]+"' selected='selected'>"+ISP_List[i][4]+", "+ISP_List[i][5]+"</option>";
331						}
332						else {
333							code +="<option value='"+ISP_List[i][0]+"'>"+ISP_List[i][4]+", "+ISP_List[i][5]+"</option>";
334						}
335					}
336				}
337			}
338			
339		}
340	}
341
342	code +="</select>";
343	document.getElementById("ISPnServiceList").innerHTML = code;
344	ChgSVC(sel_idx);
345}
346
347function ChgSVC(idx) {
348	if(ISP_List[idx][13] != "") {	//iptv idx
349		if(wan_type == "ATM" && ISP_List[idx][5] == "ADSL+MOD")
350			document.getElementById("STBPortMsg").innerHTML = "Please connect the MOD(STB) to LAN Port 1";
351		else if(wan_type == "PTM" && ISP_List[idx][5] == "VDSL+MOD")
352			document.getElementById("STBPortMsg").innerHTML = "Please connect the MOD(STB) to LAN Port 1";
353		
354		showhide("STBPortMsg", 1);
355	}
356	else {
357		showhide("STBPortMsg", 0);
358	}
359}
360
361function valid_ISP(){
362	if(document.getElementById("ISP").value == "default")
363		return false;
364	else
365		return true;
366}
367
368function setIptvNumPvc() {
369	var pvc_cnt = 0;
370	var isp_idx = document.getElementById("ISP").value
371	var iptv_idx = ISP_List[isp_idx][13];
372	var dsltmp_cfg_iptv_pvclist_value = "";
373
374	if (iptv_idx != "") {
375		for(var i = 0; i < ISP_List_IPTV.length; i++){
376			if (ISP_List_IPTV[i][0] == iptv_idx) {
377				pvc_cnt++;
378				dsltmp_cfg_iptv_pvclist_value +=
379					"<" + ISP_List_IPTV[i][1]
380					+ ">" + ISP_List_IPTV[i][2]
381					+ ">" + ISP_List_IPTV[i][3]
382					+ ">" + ISP_List_IPTV[i][4]
383					+ ">" + ISP_List_IPTV[i][5]
384			}
385		}
386	}
387	document.form.dsltmp_cfg_iptv_num_pvc.value = pvc_cnt.toString();
388	document.form.dsltmp_cfg_iptv_rmvlan.value = ISP_List[isp_idx][11];
389	document.form.dsltmp_cfg_iptv_mr.value = ISP_List[isp_idx][12];
390	document.form.dsltmp_cfg_iptv_pvclist.value = dsltmp_cfg_iptv_pvclist_value;
391}
392
393function gotoHome() {
394	if (w_Setting == "0") {
395		alert("<#QIS_recommand_encryption#>");
396		location.href = '/qis/QIS_wireless.htm';
397	}
398	else {
399		parent.location.href = '/index.asp';
400	}
401}
402</script>
403
404</head>
405
406<body onLoad="QKfinish_load_body();" >
407<form method="post" name="form" action="/start_apply.htm" target="">
408<input type="hidden" name="prev_page" value="/qis/QIS_manual_setting.htm">
409<input type="hidden" name="current_page" value="/qis/QIS_ppp_cfg.htm">
410<input type="hidden" name="next_page" value="">
411<input type="hidden" name="action_mode" value="apply">
412<input type="hidden" name="action_script" value="">
413<input type="hidden" name="action_wait" value="">
414<input type="hidden" name="dsltmp_cfg_iptv_rmvlan" value="">
415<input type="hidden" name="dsltmp_cfg_iptv_mr" value="">
416<input type="hidden" name="dsltmp_cfg_iptv_num_pvc" value="">
417<input type="hidden" name="dsltmp_cfg_iptv_pvclist" value="">
418<input type="hidden" name="dsltmp_cfg_iptv_enable" value="0">
419<input type="hidden" name="dsltmp_qis_vpi" value="<% nvram_get("dsltmp_autodet_vpi"); %>">
420<input type="hidden" name="dsltmp_qis_vci" value="<% nvram_get("dsltmp_autodet_vci"); %>">
421<input type="hidden" name="dsltmp_qis_proto" value="">
422<input type="hidden" name="dsltmp_qis_encap" value="<% nvram_get("dsltmp_autodet_encap"); %>">
423<input type="hidden" name="dsltmp_qis_pppoe_dial_on_demand" value="0">
424<input type="hidden" name="dsltmp_qis_pppoe_idletime" value="0">
425<input type="hidden" name="dsltmp_qis_pppoe_mtu" value="1492">
426<input type="hidden" name="dsltmp_qis_pppoe_mru" value="1492">
427<input type="hidden" name="dsltmp_qis_pppoe_service" value="">
428<input type="hidden" name="dsltmp_qis_pppoe_options" value="">
429<input type="hidden" name="dsltmp_qis_DHCPClient" value="1">
430<input type="hidden" name="dsltmp_qis_ipaddr" value="0.0.0.0">
431<input type="hidden" name="dsltmp_qis_netmask" value="0.0.0.0">
432<input type="hidden" name="dsltmp_qis_gateway" value="0.0.0.0">
433<input type="hidden" name="dsltmp_qis_dnsenable" value="1">
434<input type="hidden" name="dsltmp_qis_dns1" value="">
435<input type="hidden" name="dsltmp_qis_dns2" value="">
436<input type="hidden" name="dsltmp_qis_svc_cat" value="0">
437<input type="hidden" name="dsltmp_qis_pcr" value="0">
438<input type="hidden" name="dsltmp_qis_scr" value="0">
439<input type="hidden" name="dsltmp_qis_mbs" value="0">
440<input type="hidden" name="dsltmp_qis_dsl_pvc_set" value="1">
441<input type="hidden" name="dsltmp_qis_pppoe_relay" value="0">
442<input type="hidden" name="dsltmp_transmode" value="">
443<div class="QISmain">
444	<table width="730px">
445		<tr>
446			<td align="left">
447				<span class="description_down">PPPoE / PPPoA</span>
448			</td>
449		</tr>
450	</table>
451	<div style="margin-left:5px;margin-top:10px;margin-bottom:10px"><img style="width: 700px; height: 2px;" src="/images/New_ui/export/line_export.png"></div>
452	<br/>
453
454<table id="tblsetting_1" class="QISform" width="400" border=0 align="center" cellpadding="5" cellspacing="0">
455  <tr>
456  	<td>	
457     <#Layer3Forwarding_x_ConnectionType_itemname#>: <span class="cfg_val"><script>document.write(prctl_str);</script></span>, VPI/VCI: <span class="cfg_val"><% nvram_get("dsltmp_autodet_vpi"); %>/<% nvram_get("dsltmp_autodet_vci"); %>, <script>document.write(encap_str);</script></span><br>
458     <br>	
459     <#PPP_cfg_usersel_desc#>
460     <div id="hint_msg"></div>
461     <br>
462    </td> 
463  </tr>
464</table>
465  
466<table id="tblsetting_2" class="QISform" width="400" border="0" align="center" cellpadding="3" cellspacing="0">
467  <tr>
468	<th width="120"><#PPPConnection_UserName_itemname#></th>
469	<td>
470	  <input type="text" name="dsltmp_qis_pppoe_username" class="input_32_table" value="" maxlength="64" tabindex="1" autocorrect="off" autocapitalize="off">
471	</td>
472  </tr>
473  <tr>
474	<th width="120"><#PPPConnection_Password_itemname#></th>
475	<td>
476	  <input type="password" name="dsltmp_qis_pppoe_passwd" class="input_32_table" value="" maxlength="32" tabindex="2" autocorrect="off" autocapitalize="off">
477	</td>
478  </tr>
479  <tr>
480		<th width="120"><#PASS_retype#></th>
481		<td>
482			<input type="password" name="confirm_cfg_pppoe_passwd" class="input_32_table" value="" maxlength="32" tabindex="3" autocorrect="off" autocapitalize="off" autocapitalize="off" autocomplete="off">
483		</td>
484	</tr>
485</table>
486<br>
487<div id="DE_ISP_note" style="display:none;">
488		<div id="DE_ISP_title1" style="display:none;"><span class="isp_note_title">Notice (specifically for Germany ISP Telekom / 1&1):</span><br> Bitte geben Sie diese Zugangsdaten in folgendem Format ein.</div>
489		<div class="isp_note" id="Deutsche_Telekom" style="display:none;">
490			Für Telekom ADSL und VDSL Anschlüsse<br>
491			Bei einer 12-stelligen Zugangsnummer (Neue Zugangsdaten):<br>
492			<div class="account_format">Anschlusskennung<span class="num1">Zugangsnummer</span><span class="num2">Mitbenutzernummer</span>@t-online.de</div><br>
493			Bei einer Zugangsnummer mit weniger als 12 Stellen (Alte Zugangsdaten):<br>
494			<div class="account_format">Anschlusskennung<span class="num1">Zugangsnummer</span>#<span class="num2">Mitbenutzernummer</span>@t-online.de</div><br>
495		</div>			
496		<div class="isp_note" id="Deutsche_1n1_ATM" style="display:none;">
497			Bei einem 1&1 ADSL Anschluss:<br>
498			<div class="account_format">1und1/<span class="num1">benutzername</span>@online.de (1&1 Internetzugangs-Kennung)</div>
499		</div>
500		<div id="DE_ISP_title2" style="display:none;"><span class="isp_note_title">Notice (specifically for Germany ISP NetCologne):</span><br> Bitte geben Sie diese Zugangsdaten in folgendem Format ein.</div>
501		<div class="isp_note" id="Deutsche_NetCologne" style="display:none;">
502			<div class="account_format">nc-<span class="num1">username</span>@netcologne.de</div>
503		</div>
504	</div>
505<br>	
506
507	<div>
508	<table id="iptv_manual_setting" width="92%" border="0" align="left" cellpadding="3" cellspacing="0" style="margin-left:8%;">
509			<tr id="specialISP_tr">
510				<td>
511					<input type="checkbox" id="specialisp" name="specialisp" onclick="showHideIPTVList(this);">
512					<label for="specialisp">
513						<span class="QISGeneralFont" style="margin-left:0px;font-style:normal;color:#66CCFF;font-size:12px;font-weight:bolder;"><#PPPConnection_x_HostNameForISP_sectionname#> ( IPTV Service )</span>
514					</label>
515					<span class="stb_msg" id="STBPortMsg"> Please connect the IPTV STB to LAN Port 1</span>	<!-- untranslated -->
516				</td>
517			</tr>
518	</table>
519	</div>
520
521	<div id="special_ISP_img_div"><img id="special_ISP_img" width="505px" height="105px" style="margin-top:0px;margin-left:73px;display:none;" src="/images/qis/border.png"></div>
522
523	<div style="margin-left:-80px;margin-top:-90px;">
524	<table id="ISP_table" class="FormTable" width="475px" border="0" align="center" cellpadding="3" cellspacing="0">
525		<tbody>
526			<tr id="Country_tr">
527				<th width="40%"><#Manual_Setting_contry#></th>
528				<td>
529					<div id="CountryList"></div>
530				</td>
531			</tr>
532			<!--tr id="City_tr">
533				<th width="40%"><#Manual_Setting_contry#></th>
534				<td>
535					<div id="CityList"></div>
536				</td>
537			</tr-->
538			<tr id="ISP_tr">
539				<th width="40%"><#HSDPAConfig_ISP_itemname#> & <#qis_service#></th>
540				<td>
541					<div id="ISPnServiceList"></div>
542				</td>
543			</tr>
544			<!--tr id="Service_tr">
545				<th width="40%"><#qis_service#></th>
546				<td>
547					<div id="Service"></div>
548				</td>
549			</tr-->
550		</tbody>
551	</table>
552	</div>
553
554	<div class="apply_gen" style="margin-top:30px">
555		<input type="button" id="prevButton" value="<#Manual_Setting_btn#>" onclick="gotoprev(document.form);" class="button_gen" tabindex="5">
556<!--
557		<input type="button" id="nextButton" value="Ethernet WAN" onclick="redirect_page('internet_type');" class="button_gen" >
558-->
559		<input type="button" id="nextButton" value="<#CTL_next#>" onclick="submitForm();" class="button_gen" tabindex="4">
560	</div>
561
562</div>
563</form>
564</body>
565</html>
566