var fDesc=new Array();
fDesc[0] = "Linksys Wireless-G USB Network Adapter Connects your USB-equipped desktop or notebook computer to a wireless network at incredible speeds with this Network Adapter.
Features:
Connects your desktop or notebook to a wireless network at up to 54Mbps when used with a USB 2.0 port.
Easy, no-tools setup on any desktop or notebook computer with USB support.
Also compatible with Wireless-B networks (at 11Mbps).
Wireless communications are protected WPA encryption.";
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 = '';
}
}