var fDesc=new Array();
fDesc[0] = "Unitronics VISION Communication Server is a Microsoft Windows application program that acts as a communication protocol Server and allows other Windows application programs access to data from UNITRONICS Programmable Logical Controllers (PLCs) using the serial and Ethernet communications. The VISION Server DDE & Suite Link version (if running on MS Windows NT, 2000 or XP) supports the Wonderware Suite Link communication protocol.
Main features:
- The maximum size of response capacity can be adjusted by specifying how many consecutive values can be received by one poll request message.
- Minimizes system message traffic by dynamically calculating and optimizing poll lists for client-requested items/points.
- Supports multiple topics for each PLC, allowing different data update rates.
- Provides a communication status flag for each topic.
- Supports standard DDE among multiple applications.";
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 = '';
}
}