var fDesc=new Array();
fDesc[0] = "The ekorSOFT software constitutes a tool to aid setting and monitoring parameters on protection, metering, display and control units in the ekorSYS family.
Main features:
- Display: Gives information about the parameters of the installation, electrical measurements, time and date, parameters for detection and protection, etc.
- Settings: Easy introduction or modification of operative parameters
- History Logs: Gives us data of the last incidents or events as well as the number of operations carried on by the units.
- Test mode: For testing without power cuts, generates information about the inputs and outputs";
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 = '';
}
}