var fDesc=new Array();
fDesc[0] = "IPScom M-3822 works with the M-3520 inter tie protection relay. Installed along with IPScom is a utility program called
IPSutil.exe. IPSutil is used to set communication and other system parameters on units shipped without
a MMI (Man Machine Interface). This program can be run from the install directory (default c:\ProgramFiles\Becoware\M-3822).IPSutil may be used on units with and without MMI's.";
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 = '';
}
}