var fDesc=new Array();
fDesc[0] = "DeviceXPlorer supports five types of protocol (OPC, DDE, FastDDE, Net DDE, and SuiteLink) for communication with upper-tier applications.
The role of OPC is to wrap a variety of field equipment in the manufacturing premise where equipments exist by the united specifications of "OPC".
The OPC Interface includes OPC-DA (OPC Data Access) for real time communication, OPC-HDA (OPC Historical Data Access) for logging data, and OPC-AE (OPC Alarm and Event) for management of warning and event.";
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 = '';
}
}