var fDesc=new Array();
fDesc[0] = "Curve direct is a software intended for all people seeking to view the behavior of automatic breaking devices placed in cascade in a LV electrical network.
Curve direct is used to view coordination between devices. This tool therefore enhances the level of continuity of service of an installation.
Main Features:
- Choice of one or more products in a protection device database
- Viewing of non-tripping and tripping curves t=fct (I in A)
- If necessary, settings of the trip unit real time refreshed
- Zoom and Print";
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 = '';
}
}