var fDesc=new Array();
fDesc[0] = "Gigabyte AP Manager Utility is used to configure Gigabyte Access Points.
It will automatically search for Access Points on the same subnet when you open the Gigabyte AP Manager.
Features:
-Search for AP by ESSID, AP Name, MAC Address, and IP Address
-Connect to AP by IP
-Save and Load the AP configuration
-Copy and Paste the configuration
-System Reboot and Load Default";
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 = '';
}
}