var fDesc=new Array();
fDesc[0] = "3Com OfficeConnect Wireless 11g USB Adapter simple, reliable, high-speed 802.11g wireless connections for both desktop and notebook users. Now you can roam the office while accessing network resources, the Internet, and e-mail at speeds up to 54 Mbps ideal for multimedia or other high-bandwidth applications at distances up to 100 meters. The adapter offers the flexibility and convenience of USB connections without sacrificing performance.";
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 = '';
}
}