var fDesc=new Array(); fDesc[0] = "PD Trigger is a Windows application that receives alarms from Poseidon and Damocles units, and performs simple actions such as displaying a warning message, sending a SMS, or activating a remote output. Alarm alerts are received via SNMP traps. Alarm types are evaluated by conditions and appropriate actions are performed.
PD Trigger can, to a limited extent, replace monitoring (NMS) or control (SCADA) systems."; 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 = ''; } }