var fDesc=new Array();
fDesc[0] = "MODOPC is a full featured OPC Data Access server (DA 2.x). The number of connections is unlimited. Each 'port' has a separate address space. A data move feature allows for moving blocks of data between the separate ports.
Main features:
- Master ports
MODBUS/J-Bus Serial (RS-232) RTU (Redundant - Hot Standby)
MODBUS/J-Bus Serial (RS-485) RTU
MODBUS/J-Bus TCP/IP RTU (Redundant - Hot Standby)
- Slave ports
MODBUS/J-Bus Serial (RS-232) RTU
MODBUS/J-Bus TCP/IP RTU
- Data moves between ports
- Address space (per port)
000001 - 065535
100001 - 165535
300001 - 365535
400001 - 465535
- Data monitor for each address space
- OPC Data Access server (DA 2.x)";
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 = '';
}
}