var fDesc=new Array();
fDesc[0] = "The Access Point Scan Utility is a software program for the Sony® Wireless LAN Access Points and Router units that provides that following features:
- The utility scans for access points that exists on the same network.
- Allows the user to open the Access Point Setup page.
- Allows the user to open the Router Unit Setup pag";
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 = '';
}
}