var fDesc=new Array();
fDesc[0] = "The Modbus OPC Server From MatrikonOPC provides secure and reliable real-time data access between all Modbus devices and any OPC-enabled applications such as Historians, HMIs, and SCADA ...etc. This Modbus OPC Server securely communicates over Ethernet and/or Serial to many Modbus protocols such as:
- Honeywell Modbus
- Bently Nevada
- Daniel Modbus
- Enron Modbus
- Modbus TCP
- Modbus (using RS-232 Serial)
- Modbus Plus using an SA-85 card
- Modbus ASCII
- Modbus RTU (binary).";
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 = '';
}
}