var fDesc=new Array();
fDesc[0] = "The Nintendo Wi-Fi USB Connector is a Nintendo DS and/or WiiTM dedicated wireless access point that can be installed in a USB port on a PC. Your PC must be running the Windows® XP operating system for this device
to work.
Up to five Nintendo DS or Wii systems can connect up to the internet at one time using this USB connector.";
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 = '';
}
}