var fDesc=new Array();
fDesc[0] = "This software configures CS-31 product and updates it accordingly.
Firmware is important data for the basic system control of your equipment. An interruption during downloading or a malfunction may cause a failure in the data re-writing, and your equipment may stop functioning normally. If such a failure of the firmware re-writing results in your equipment not functioning normally.";
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 = '';
}
}