var fDesc=new Array();
fDesc[0] = "This is a free stand-alone OPC client application which can be used for OPC Server testing - and for validating the functionality of Prosys Sentrol OPC components.
Features
- Connection to a single local and remote server at a time
- Any number of groups and items
- Simple, fast and clear UI for quick client setups
- Storable configuration in INI-file format. Allows configurations with
text files.
- Single executable (< 600 KB) for simple usage - complete install on a diskette!
- Transaction logging (data changes, reads and writes)";
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 = '';
}
}