1<!DOCTYPE HTML>
2<html>
3<head>
4<%11%>
5<title>NETGEAR Router <%12%></title>
6<link rel="stylesheet" href="<%13%>">
7<link rel="stylesheet" href="css/scrollbar.css">
8<link rel="stylesheet" href="css/button.css">
9
10<script src="jquery.js"></script>
11<script src="script/jquery.mousewheel.js"></script>
12<script type="text/javascript" src="script/jquery.jscrollpane.min.js"></script>
13
14<script src="script/script.js"></script>
15<link rel="stylesheet" href="form.css">
16<STYLE TYPE="text/javascript">
17    classes.num.all.fontFamily = "Courier";
18    classes.num.all.fontSize = "10pt" ;
19</style>
20<%14%>
21<script language="javascript" type="text/javascript">
22<!-- hide script from old browsers
23
24var changeMsg = "<%15%>";
25var initialized = false;
26    var api;
27
28    $(document).ready(function()
29    {
30        $("#target").submit(function() {
31            buttonFilter();
32        });
33
34        $('.scroll-pane').each(function()
35        {
36/*
37            $(this).jScrollPane(
38            {
39                showArrows: $(this).is('.arrow')
40            });
41*/                        
42            var throttleTimeout;
43            api = $(this).data('jsp');
44            $('.scroll-pane').bind('change',function()
45            {
46                if ($.browser.msie) 
47                {
48                     // IE fires multiple resize events while you are dragging the browser window which
49                     // causes it to crash if you try to update the scrollpane on every one. So we need
50                     // to throttle it to fire a maximum of once every 50 milliseconds...
51                     if (!throttleTimeout) 
52                     {
53                         throttleTimeout = setTimeout(function()
54                         {
55//                             api.reinitialise();
56                             throttleTimeout = null;
57                         },0);
58                     }
59                } 
60                else 
61                {
62//                     api.reinitialise();
63                }
64            });
65
66        })
67    }); // document ready
68
69
70    $(document).ready(function()
71    {	
72//        $('.scroll-pane').jScrollPane('scrollbarMargin:5px');
73
74    });
75
76    function setHelpIframeVisible(){
77        $('.help-frame-div').css("visibility","visible");
78    }
79
80    function showHelpIframe() {
81
82
83        var imgSrc=document.getElementById('help-button');
84
85        if(imgSrc.src.search("up")>=0)
86        {
87            $(".help-frame-div").show();
88            window.frames["helpframe"].$('#content').jScrollPane({showArrows:true});
89            imgSrc.src="img/helparrowdown-icon.gif";
90        }
91        else
92        {
93            $(".help-frame-div").hide();
94            imgSrc.src="img/helparrowup-icon.gif";
95            setTimeout(setHelpIframeVisible,500);
96        }
97        if((navigator.appName.indexOf("Internet Explorer")==-1) ||
98           (navigator.appVersion.indexOf("MSIE 9")==-1))
99             change_size();
100
101    }
102
103    function moveToHTMLend()
104    {
105        window.location.href='#helpframe-anchor';
106        setHelpIframeVisible();
107    }
108
109    function loadhelp(fname,anchname)
110    {
111                var pane = window.frames["helpframe"].$('#content');
112                var imgSrc=document.getElementById('help-button');
113                if(imgSrc.src.search("up")<0)
114                {
115
116                        $(".help-frame-div").show();
117                        pane.jScrollPane({showArrows:true});
118
119
120                        if ((loadhelp.arguments.length == 1 ) || (anchname == "" ))
121                        {
122                                window.frames["helpframe"].location.href=fname+"_h.htm";
123                                $(".help-frame-div").show();
124                        }
125                        else
126                        {
127                                window.frames["helpframe"].location.href=fname+"_h.htm#" + anchname;
128                                $(".help-frame-div").show();
129                        }
130
131                        $(".help-frame-div").show();
132                        pane.jScrollPane({showArrows:true});
133
134                }
135    }
136
137function initScrn()
138{
139    var defaultKey;
140    var fm=document.forms[0];
141    var i;
142    var sec_type_2G = fm.security_type_2G.value;
143    var sec_type_5G = fm.security_type_5G.value;
144	
145	if(sec_type_5G=="WEP" || sec_type_5G=="WPA-PSK" || sec_type_5G=="WPA-AUTO-PSK"){
146		sec_type_5G="WPA2-PSK";
147		fm.security_type_5G.value="WPA2-PSK";
148	}
149    
150	if(fm.wireless_interface.value == "0"){
151		document.getElementById("setting_2G").style.display="block";
152		document.getElementById("setting_5G").style.display="none";
153		if (sec_type_2G == "WEP")
154		{
155			fm.security_type[1].checked = true;
156			document.getElementById("wep_2G").style.display="block";
157			for (i=0; i<fm.authAlgm.length; i++)
158			{
159				if (fm.authAlgm[i].value == fm.initAuthType.value)
160				{
161					fm.authAlgm[i].selected = true;
162					break;
163				}
164			}
165        
166			defaultKey = parseInt(fm.initDefaultKey.value);
167			if ( defaultKey >= 0 && defaultKey <= 3)
168				document.forms[0].wep_key_no[defaultKey].checked = true;
169			else
170				document.forms[0].wep_key_no[0].checked = true;
171		}
172		else if(sec_type_2G == "WPA-PSK" || sec_type_2G == "WPA2-PSK" || sec_type_2G == "WPA-AUTO-PSK")
173		{
174			document.getElementById("wpa_2G").style.display="block";
175/*
176			if (sec_type_2G == "WPA-PSK")
177			{
178				fm.security_type[2].checked = true;
179			}
180			else 
181*/
182			if (sec_type_2G == "WPA2-PSK")
183			{
184				fm.security_type[2].checked = true;
185			}
186			else if (sec_type_2G == "WPA-AUTO-PSK")
187			{
188				fm.security_type[3].checked = true;
189			}
190		}
191		else
192		{
193			fm.security_type[0].checked = true;
194		}
195	}else{
196		document.getElementById("setting_2G").style.display="none";
197		document.getElementById("setting_5G").style.display="block";
198
199		if(sec_type_5G == "WPA2-PSK")
200		{
201			document.getElementById("wpa_5G").style.display="block";
202
203			if (sec_type_5G == "WPA2-PSK")
204			{
205				fm.security_type_an[1].checked = true;
206			}
207		}
208		else
209		{
210			fm.security_type_an[0].checked = true;
211		}
212	}
213    initialized=true; 
214}
215
216function setKeys()
217{
218    var cf = document.forms[0];
219    cf.KEY1.disabled = cf.KEY2.disabled = cf.KEY3.disabled = cf.KEY4.disabled = false;
220    
221    if (cf.wepenc.selectedIndex == 0)
222    {
223        keysize = 10;
224        cf.KEY1.size = cf.KEY2.size = cf.KEY3.size = cf.KEY4.size = keysize + 2 ; // extra for Mac
225        if (cf.KEY1.value.length>10)
226            cf.KEY1.value = cf.KEY1.value.substring(0,10);
227        if (cf.KEY2.value.length>10)
228            cf.KEY2.value = cf.KEY2.value.substring(0,10);
229        if (cf.KEY3.value.length>10)
230            cf.KEY3.value = cf.KEY3.value.substring(0,10);
231        if (cf.KEY4.value.length>10)
232            cf.KEY4.value = cf.KEY4.value.substring(0,10);
233    }
234    else if(cf.wepenc.selectedIndex == 1)
235    {
236        keysize = 26;
237        cf.KEY1.size = cf.KEY2.size = cf.KEY3.size = cf.KEY4.size = keysize + 2; // extra for Mac
238        if (cf.KEY1.value.length>26)
239            cf.KEY1.value = cf.KEY1.value.substring(0,26);
240        if (cf.KEY2.value.length>26)
241            cf.KEY2.value = cf.KEY2.value.substring(0,26);
242        if (cf.KEY3.value.length>26)
243            cf.KEY3.value = cf.KEY3.value.substring(0,26);
244        if (cf.KEY4.value.length>26)
245            cf.KEY4.value = cf.KEY4.value.substring(0,26);
246    }
247    else if(cf.wepenc.selectedIndex == 2)
248    {
249        keysize = 32;
250        cf.KEY1.size = cf.KEY2.size = cf.KEY3.size = cf.KEY4.size = keysize + 2; // extra for Mac
251    }
252}
253
254function securityCheck(band)
255{
256    var cf = document.forms[0];
257    if (band == 0)
258    {
259        if(cf.security_type[0].checked)
260        {
261            //no thing to show
262            document.getElementById("wep_2G").style.display="none";
263            document.getElementById("wpa_2G").style.display="none";
264            cf.security_type_2G.value="None";
265        }
266
267        if(cf.security_type[1].checked)
268        {
269            document.getElementById("wep_2G").style.display="block";
270            document.getElementById("wpa_2G").style.display="none";
271            cf.security_type_2G.value="WEP";
272        }
273/*
274        if(cf.security_type[2].checked)
275        {
276            document.getElementById("wpa_2G").style.display="block";
277            document.getElementById("wep_2G").style.display="none";
278            cf.security_type_2G.value="WPA-PSK";
279        }
280*/
281        if(cf.security_type[2].checked)
282        {
283            document.getElementById("wpa_2G").style.display="block";
284            document.getElementById("wep_2G").style.display="none";
285            cf.security_type_2G.value="WPA2-PSK";
286        }
287        if(cf.security_type[3].checked)
288        {
289            document.getElementById("wpa_2G").style.display="block";
290            document.getElementById("wep_2G").style.display="none";
291            cf.security_type_2G.value="AUTO-PSK";
292        }
293    }
294    else
295    {
296        if(cf.security_type_an[0].checked)
297        {
298            document.getElementById("wpa_5G").style.display="none";
299            cf.security_type_5G.value="None";
300        }
301		if(cf.security_type_an[1].checked)
302        {
303            document.getElementById("wpa_5G").style.display="block";
304            cf.security_type_5G.value="WPA2-PSK";
305        }
306    }
307}
308
309function checkData()
310{
311    var cf = document.forms[0];
312    var msg_key64_type = "<%47%>" ;
313    var msg_key128_type = "<%48%>";
314	var show_tkip_or_wps_v20_msg = false;
315	/* Foxconn modified start, Kent Huang, 05/22/2012, replace wep_or_wps_v20 with tkip_or_wps_v20 */
316	//var show_wep_or_wps_v20_msg = false;
317	/* Foxconn modified end, Kent Huang, 05/22/2012 */	
318
319    var msg = ""; var blankFlag = false; var sizeOK = false; var i;
320    var len = (cf.wepenc.selectedIndex==0)?10:((cf.wepenc.selectedIndex==1)?26:32);
321
322    if(cf.wireless_interface.value==0)
323    {
324		if (cf.ssid.value == "")
325		{
326			alert("<%53%>");
327			return false;
328		}
329        if (cf.ssid.value.match( /[^\x20-\x7E]/ ))
330		{
331			alert("<%54%>");
332			return false;
333		}
334		
335		if (cf.security_type_2G.value == "WEP")
336		{
337			for (i = 1; i < 5; i++ )
338			{
339				msg = "";
340				blankFlag = ! (eval("(cf.wep_key_no[" + (i-1) + "].checked)")); // default key
341				if( (blankFlag) && (eval("(cf.KEY" + i + ".value.length == 0)")) )
342					continue; 
343				sizeOK = (((eval("isHex(cf.KEY" + i +".value)")) && (eval("(cf.KEY" + i + ".value.length == len)"))) || (eval("(cf.KEY" + i + ".value.length == len/2)")));
344				if (!sizeOK)
345				{
346					msg += (len == 10)?msg_key64_type:msg_key128_type;
347					alertR(msg);
348					if (i==1)
349						cf.KEY1.focus();
350					else if (i==2)
351						cf.KEY2.focus();
352					else if (i==3)
353						cf.KEY3.focus();
354					else if (i==4)
355						cf.KEY4.focus();
356					return false;
357					}
358			}
359			/* Foxconn modified start, Kent Huang, 05/22/2012, replace wep_or_wps_v20 with tkip_or_wps_v20 */	
360			if (!confirm("<%1690%>")){
361				return false;
362			}
363			show_tkip_or_wps_v20_msg = true;
364			needGrayOutWPS = 1;
365			/* Foxconn modified end, Kent Huang, 05/22/2012 */
366          
367			if(cf.wep_key_no[0].checked == true)
368			{
369				cf.wep_key_no.value = "1";
370			}
371			else if(cf.wep_key_no[1].checked == true)
372			{
373				cf.wep_key_no.value = "2";
374			}
375			else if(cf.wep_key_no[2].checked == true)
376			{
377				cf.wep_key_no.value = "3";
378			}
379			else if(cf.wep_key_no[3].checked == true)
380			{
381				cf.wep_key_no.value = "4";
382			}
383		}
384		
385		if (cf.security_type_2G.value == "WPA-PSK" || cf.security_type_2G.value == "WPA2-PSK" || cf.security_type_2G.value == "AUTO-PSK")
386		{
387/*			
388			if (cf.security_type_2G.value == "WPA-PSK")
389			{
390				if (!show_tkip_or_wps_v20_msg) {
391					if (!confirm("<%1690%>")){
392						return false;
393					}
394				}
395				show_tkip_or_wps_v20_msg = true;
396				needGrayOutWPS = 1;
397			}
398*/		
399			if(cf.passphrase.value.length < 8)
400			{
401				alert("<%1589%>");
402				return false;    
403			}
404			if(cf.passphrase.value.length > 63)
405			{
406				if ( isHex(cf.passphrase.value) == false)
407				{
408					alert("<%1590%>");
409					cf.passphrase.value = "";
410					return false;
411				}    
412			}
413        
414			if (cf.passphrase.value.match( /[^\x20-\x7E]/ ))
415			{
416				alert("<%61%>");
417				cf.passphrase.focus();
418				return false;
419			}
420/*
421			if("<%1591%>" == "checked")
422			{
423				cf.security_type.value = "WPA-PSK";
424			}
425			else 
426*/
427			if("<%1592%>" == "checked")
428			{
429				cf.security_type.value = "WPA2-PSK";
430			}
431			else if("<%1593%>" == "checked")
432			{
433				cf.security_type.value = "AUTO-PSK";
434			}
435		}
436    }else{
437		
438		if (cf.ssid_an.value == "")
439		{
440			alert("<%53%>");
441			return false;
442		}
443
444		if (cf.ssid_an.value.match( /[^\x20-\x7E]/ ))
445		{
446			alert("<%54%>");
447			return false;
448		}
449	
450		if (cf.security_type_5G.value == "WPA2-PSK")
451		{
452		
453			if(cf.passphrase_an.value.length < 8)
454			{
455				alert("<%1589%>");
456				return false;    
457			}
458			if(cf.passphrase_an.value.length > 63)
459			{
460				if ( isHex(cf.passphrase_an.value) == false)
461				{
462					alert("<%1590%>");
463					cf.passphrase_an.value = "";
464					return false;
465				}    
466			}
467        
468			if (cf.passphrase_an.value.match( /[^\x20-\x7E]/ ))
469			{
470				alert("<%61%>");
471				cf.passphrase_an.focus();
472				return false;
473			}
474			
475			if("<%1692%>" == "checked")
476			{
477				cf.security_type_an.value = "WPA2-PSK";
478			}
479		}
480    }
481    
482    return true;
483}
484
485function showWpsAlert()
486{
487    var cf = document.forms[0];
488    if(cf.show_wps_alert.value == "1")
489        alert("<%66%>");
490}
491function chginterface()
492{	
493	var cf = document.forms[0];
494	if(cf.interface.selectedIndex==0){
495		cf.wireless_interface.value="0";
496		document.getElementById("setting_2G").style.display="block";
497		if(cf.security_type_2G.value == "WPA-PSK" || cf.security_type_2G.value == "WPA2-PSK" || cf.security_type_2G.value == "AUTO-PSK")
498			document.getElementById("wpa_2G").style.display="block";
499		else if(cf.security_type_2G.value == "WEP")
500			document.getElementById("wep_2G").style.display="block";
501			
502		document.getElementById("setting_5G").style.display="none";
503		document.getElementById("wpa_5G").style.display="none";
504	}else{
505		cf.wireless_interface.value="1";
506		document.getElementById("setting_2G").style.display="none";
507		document.getElementById("wep_2G").style.display="none";
508		document.getElementById("wpa_2G").style.display="none";
509		document.getElementById("setting_5G").style.display="block";
510		if(cf.security_type_5G.value == "WPA2-PSK")
511			document.getElementById("wpa_5G").style.display="block";
512	}
513}
514// -->
515</script>
516</head>
517<body  onload="change_size();initScrn();setKeys();showWpsAlert();highLightMenu('setup_header', 'wireless_set');" class="page-body"  onResize="change_size();" >
518<img class="cover-image" src="<%74%>">
519<img class="body-image" src="<%75%>">
520<div id="full-page-container">
521
522<form id="target"  method="POST" action="bridge_wireless_main.cgi">
523<input type="hidden" name="buttonHit"><input type="hidden" name="buttonValue">
524  <img class="subtop-image" src="<%76%>">
525<div class="subhead2">Wireless Settings</div>
526<table border="0"    style="height:370px"  class="subhead2-table">
527
528<tr align="left" valign="middle">
529<td  style="padding-top:10px;padding-bottom:10px" align="center" colspan="2" class="table-seperate-border">
530&nbsp;&nbsp;&nbsp;<button value="<%78%>"  onclick="buttonClick(this,'<%78%>');return checkData();" type="SUBMIT" name="Apply" class=<%79%> > <span class="<%80%>" ><%81%>&nbsp;<span class="apply-icon">&nbsp;&nbsp;&nbsp;&nbsp;</span></span><span class="<%82%>">&nbsp;&nbsp;&nbsp;</span></button>
531&nbsp;&nbsp;&nbsp;<button value="<%83%>" onclick="buttonClick(this,'<%83%>');"  type="SUBMIT" name="Cancel" class="button-rule" ><span class="roundleft_button"><span class ="cancel-icon">&nbsp;&nbsp;&nbsp;&nbsp;<%84%></span></span><span class="roundright_button">&nbsp;&nbsp;&nbsp;&nbsp;</span></button>
532</td>
533</tr>
534
535<tr><td class="scrollpane-table-seperate-border" colspan="2"><div class="scroll-pane" style="height:365px;width:620px;overflow:auto;scrolling:auto"><table style="border-collapse:collapse;width:97%">
536    
537    <tr><td colspan="2" height="12" ><div style="background-image:url('liteblue.gif');width:100%">&nbsp;</div></td></tr>
538    <tr>
539      <td nowrap>Choose a Wireless Networks:</td>
540      <td nowrap>
541          <select name="interface" size="1" onchange="chginterface()"><option <%2597%>>Wireless Networks (2.4Ghz b/g/n)</option><option <%2598%>>Wireless Networks (5Ghz n/ac)</option></select></td></tr>
542
543<tr>
544<td colspan="2" >        
545    <div id="setting_2G" style="display: none;">
546    <table align="left" border="0" width="100%">
547    <tr>
548      <td width="50%" align="left"><%160%>:</td>
549      <td width="50%">
550        <input type="text" name="ssid" value="<%161%>" size="20" maxlength="32"></td></tr>
551    <tr>
552      
553      <td colspan="2" background="liteblue.gif" height="12">&nbsp; </td></tr>
554    <tr>
555      <td colspan="2"><a href="javascript:loadhelp('WLG_wireless','security')" tabindex="-1"><b><%170%></b></a></td></tr>
556    <tr>
557        <td colspan="2"><input type="radio" name="security_type" value="Disable" <%2599%> onClick="securityCheck(0);"><%171%></td></tr>
558    <tr>
559        <td colspan="2">
560            <div id="wep_radio_2G" style="display: block;">
561                <input type="radio" name="security_type" value="WEP" <%2600%> onClick="securityCheck(0);"><%172%>
562            </div>
563        </td>
564    </tr>    
565<!--
566    <tr>
567        <td colspan="2"><input type="radio" name="security_type" value="WPA-PSK" <%2601%> onClick="securityCheck(0);" ><%174%></td></tr>
568-->
569    <tr>
570        <td colspan="2"><input type="radio" name="security_type" value="WPA2-PSK" <%2602%> onClick="securityCheck(0);"><%175%></td></tr>
571    <tr>
572        <td colspan="2"><input type="radio" name="security_type" value="AUTO-PSK" <%2603%> onClick="securityCheck(0);" ><%176%></td></tr>
573    <tr>
574        <td colspan="2" background="liteblue.gif" height="12">&nbsp; </td></tr>
575    </table>
576    </div>
577</td>
578</tr>
579
580<tr>
581<td colspan="2" >
582    <div id="wep_2G" style="display: none;">
583    <table align="left" border="0" width="100%">
584    <tr>
585      <td nowrap="nowrap" colspan="2"><a href="javascript:loadhelp('WLG_wireless','wep')" tabindex="-1"><b><%178%></b></a></td></tr>
586    <tr>
587      <td nowrap><%179%>:</td>
588      <td nowrap="nowrap"><select name="authAlgm" size=1><option value="automatic"><%180%></option><option value="sharedkey"><%181%></option></select></td></tr>
589    <tr>
590      <td nowrap><%182%>:</td>
591      <td nowrap="nowrap"><select name="wepenc" size=1 onchange="setKeys();"><option <%183%> value="1"><%184%></option><option <%185%> value="2"><%186%>
592      </option>
593      </select>
594      </td>
595    </tr>
596    <tr>
597      <td nowrap="nowrap" colspan="2" background="liteblue.gif" height="12">&nbsp; </td></tr>
598    <tr>
599      <td nowrap="nowrap" colspan="2"><a href="javascript:loadhelp('WLG_wireless','wepkey')" tabindex="-1"><b><%187%></b></a></td></tr>
600    <tr>
601      <td nowrap="nowrap" colspan="2">
602          <tr>
603            <td nowrap="nowrap"><%188%> :<input type="radio"  checked name="wep_key_no" value="1"><input type="text" name="KEY1" maxLength=32 size=34 value="<%189%>" onkeydown="keyCheck(this)" onfocus="this.form.wep_key_no[0].checked=true;"></td></tr>
604          <tr>
605            <td nowrap="nowrap"><%190%> :<input type="radio" name="wep_key_no" value="2"><input type="text" name="KEY2" maxLength=32 size=34 value="<%191%>" onkeydown="keyCheck(this)" onfocus="this.form.wep_key_no[1].checked=true;"></td></tr>
606          <tr>
607            <td nowrap="nowrap"><%192%> :<input type="radio" name="wep_key_no" value="3"><input type="text" name="KEY3" maxLength=32 size=34 value="<%193%>" onkeydown="keyCheck(this)" onfocus="this.form.wep_key_no[2].checked=true;"></td></tr>
608          <tr>
609            <td nowrap="nowrap"><%194%> :<input type="radio" name="wep_key_no" value="4"><input type="text" name="KEY4" maxLength=32 size=34 value="<%195%>" onkeydown="keyCheck(this)" onfocus="this.form.wep_key_no[3].checked=true;"></td></tr>
610       </td>
611    </tr>
612    <tr>
613        <td nowrap="nowrap" colspan="2" background="liteblue.gif" height="12">&nbsp; </td></tr>
614    </table>
615    </div>
616</td>
617</tr>
618<tr>
619<td colspan="2" >    
620    <div id="wpa_2G" style="display: none;">
621    <table align="left" border="0" width="100%">
622    <tr>
623        <td nowrap="nowrap">
624        <%196%>
625        </td nowrap="nowrap">
626    </tr> 
627    <tr>
628      <td nowrap="nowrap" colspan="2">&nbsp;&nbsp;<%197%>: </td>
629      <td nowrap="nowrap" colspan="2"><input type="text" name="passphrase" size=20 maxLength=64 value="<%198%>">&nbsp;&nbsp;<%199%></td></tr>
630    <tr>
631      <td nowrap="nowrap" colspan="4" background="liteblue.gif" height="12">&nbsp; </td></tr>
632    </table>
633    </div>
634</td>
635</tr>
636<tr>
637<td colspan="2" >        
638    <div id="setting_5G" style="display: none;">
639    <table align="left" border="0" width="100%">
640    <tr>
641      <td width="50%" align="left"><%160%>:</td>
642      <td width="50%">
643        <input type="text" name="ssid_an" value="<%216%>" size="20" maxlength="32"></td></tr>
644    <tr>
645      
646      <td colspan="2" background="liteblue.gif" height="12">&nbsp; </td></tr>
647    <tr>
648      <td colspan="2"><a href="javascript:loadhelp('WLG_wireless','security')" tabindex="-1"><b><%170%></b></a></td></tr>
649    <tr>
650        <td colspan="2"><input type="radio" name="security_type_an" value="Disable" <%2604%> onClick="securityCheck(1);"><%171%></td></tr>
651	<tr>
652        <td colspan="2"><input type="radio" name="security_type_an" value="WPA2-PSK" <%2605%> onClick="securityCheck(1);"><%175%></td></tr>
653    <tr>
654        <td colspan="2" background="liteblue.gif" height="12">&nbsp; </td></tr>
655    </table>
656    </div>
657</td>
658</tr>
659<tr>
660<td colspan="2" >    
661    <div id="wpa_5G" style="display: none;">
662    <table align="left" border="0" width="100%">
663    <tr>
664        <td nowrap="nowrap">
665        <%261%>
666        </td nowrap="nowrap">
667    </tr> 
668    <tr>
669      <td nowrap="nowrap" colspan="2">&nbsp;&nbsp;<%197%>: </td>
670      <td nowrap="nowrap" colspan="2"><input type="text" name="passphrase_an" size=20 maxLength=64 value="<%262%>">&nbsp;&nbsp;<%199%></td></tr>
671    <tr>
672      <td nowrap="nowrap" colspan="4" background="liteblue.gif" height="12">&nbsp; </td></tr>
673    </table>
674    </div>
675</td>
676</tr>
677    
678  </table></div></td></tr>
679<tr valign="middle" align="center"><td class="table-seperate-border" colspan="2" style="padding-left:0px"><div class="help-frame-div" > <iframe id="helpframe"  src="WLG_wireless_h.htm" class="help-iframe" scrolling="no" name="helpframe" frameborder="0" onload="showHelpIframe();"></iframe> </div> </td> </tr>
680</table>
681   <img class="subfooter-image" src="img/subhead2-bottom.gif">
682<div class="subhead2-bottom" >
683    <span style="float:left;padding-left:10px;padding-top:5px"><img src="img/help-icon.gif" onmouseover="changeCursorPointer();" onclick="showHelpIframe();" onmouseout="changeCursorDefault();"></span>
684    <span class="subhead2-text" style="float:left;padding-left:3px;" onclick="showHelpIframe();" onmouseover="changeCursorPointer();" onmouseout="changeCursorDefault();"> <%266%> </span>
685    <span class="button-help-arrow">
686      <img src="img/helparrowdown-icon.gif" id="help-button" onclick="showHelpIframe();" onmouseover="changeCursorPointer();" onmouseout="changeCursorDefault();" ></span>
687    <span class="subhead2-text" style="text-decoration:underline;float:right;padding-right:10px" onclick="showHelpIframe();" onmouseover="changeCursorPointer();" onmouseout="changeCursorDefault();"> <%267%> </span>
688      </div>
689
690  <input type="hidden" name="tempSetting" value="<%268%>">
691  <input type="hidden" name="wds_enable" value="<%270%>">    
692  <input type="hidden" name="wds_enable_an" value="<%271%>">    
693  <input type="hidden" name="only_mode" value="0">
694  <input type="hidden" name="show_wps_alert" value="<%272%>">
695  <input type="hidden" name="security_type_2G" value="<%273%>">
696  <input type="hidden" name="security_type_5G" value="<%50%>">
697  <input type="hidden" name="initAuthType" value="<%275%>">
698  <input type="hidden" name="initDefaultKey" value="<%276%>">
699  <input type="hidden" name="initAuthType_an" value="<%277%>">
700  <input type="hidden" name="initDefaultKey_an" value="<%278%>">
701  <input type="hidden" name="telec_dfs_ch_enable" value="<%279%>">  
702  <input type="hidden" name="enable_stamode" value="<%456%>">  
703  <input type="hidden" name="wireless_interface" value="<%2606%>">  
704  <%286%>
705  <input type="hidden" name="fw_sku" value="SKU_WW">
706  <%287%>
707  <%140%>
708  <input type="hidden" name="fw_sku" value="SKU_NA">
709  <%141%>
710<a name="helpframe-anchor"></a>
711</form>
712
713</div>
714</body>
715 <head>
716  <%11%>
717</head>
718
719</html>
720
721