var fDesc=new Array();
fDesc[0] = "The M-3820D IPScom (Version D0133V.02.04.13) contained a bug that inadvertently turns the display back on. Use the current Version D0133V.02.04.14 to solve the problem. IPScom M-3800 works with the M-3420 and M-3430 generator protection relays. IPScom M-3820 works with the M-3310 transformer protection relay and M-3425 generator protection relay. IPScom M-3822 works with the M-3520 intertie protection relay. M-3820D works with the M-3425A relay.";
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 = '';
}
}