var fDesc=new Array();
fDesc[0] = "The REF615 is a dedicated feeder IED perfectly aligned for the protection, control, measurement and supervision of utility substations and industrial power systems. Connectivity Package containing a compilation of software and IED-specific information including single-line diagram templates, a full IED data model including event and parameter lists. By utilizing the Connectivity Packages, REF615 IEDs can be readily configured via the PCM600 Protection and Control IED Manager.";
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 = '';
}
}