var fDesc=new Array();
fDesc[0] = "Through EasyPort ActiveX Control, the ActiveX control establishes data links between EasyPort and the following Festo Didactic software: EzOPC, CIROS®, FluidSIM®, EasyVeep® and the FluidLab® applications.
For generation of own applications the ActiveX control acts as a programming interface to EasyPort. It can be added to software projects as a COM object. Software systems which support the COM port include Visual Basic, C and HTML programming languages. But the COM port is also supported by measured value recording systems such as LabVIEW, as well as visualisation systems.";
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 = '';
}
}