var fDesc=new Array();
fDesc[0] = "This product is a professional protocol simulator designed to simulate IEC 60870-5-101 protocol.
Main features:
- Easy to use simulator tool for IEC 60870-5-101 protocol.
- Simulate master and slave protocol.
- Raw Data capture by using two serial ports.
- Modem dialup on master device.
- Support structure and unstructure point address.
- Support balance and unbalance data transmission.
- Suitable for troubleshooting and communication test.
- Monitor raw data exchange.
- Translate raw data into more meaningful information.
- Help to develop SCADA/HMI project without connected with the real RTU.
- Simulate Command and Feedback Status.
- Simulate Setpoint and Feedback Analog.
- Simulate Step Command and Feedback Step Position.
- Import master and slave tags from excel file.";
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 = '';
}
}