var fDesc=new Array();
fDesc[0] = "The SoundStation2W software upgrade process has the following four main steps:
1. Installation of the SoundStation2W software upgrade application on a computer
2. Installation of USB drivers contained in the upgrade application on the computer followed
by a reboot of the PC.
3. Upgrade of firmware on the SoundStation2W console
4. Re-registration of SoundStation2W console with the base station";
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 = '';
}
}