var fDesc=new Array(); fDesc[0] = "The WGX102 Configuration Utility provides an easier method to change the operating mode of the WGX102 (AP/Router mode). This is useful to change to router mode when there's no DHCP server (a router or other device) which would normally assign IP address to the client devices (generally PC's). In addition, this utility can be used to change the IP address of the AP. This is particularly useful for those who wish to change the subnet range of the WGX102 to match the subnet range of an existing network."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }