var fDesc=new Array();
fDesc[0] = "ZyAIR G-200 Wireless LAN USB Adapter: Features: Adapter for USB 2.0-compliant laptop and desktop.
Data rate of up to 54Mbps, five times faster than 802.11b; good for delivering large files, MP3 and video media.
Works with both IEEE 802.11b and 802.11g (both at 2.4 GHz), and offers the freedom of mobility.
64/128-bit WEP Encryption support ensure wireless data security.
Wi-Fi Certificate to ensure interoperability.
WHQL Certificate to ensure compatibility with Microsoft Windows.";
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 = '';
}
}