var fDesc=new Array();
fDesc[0] = "The MatrikonOPC Client for Intellution FIX and iFIX enables users to access OPC DA servers for the transfer of real-time data. This OPC I/O Driver eliminates approximately half of the driver configuration as the OPC server's point information is automatically accessed.
Features:
- Support for OPC DA (Data Access) 1.0 and 2.0
- Read and write capabilities
- Support for both COM and DCOM (access remote OPC servers)
- Import of OPC Server configuration using OPC";
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 = '';
}
}