var fDesc=new Array();
fDesc[0] = "The ProConOS OPC-Server opens the door to the standard world of Windows or Windows CE. The ProConOS Gateway enables remote access to ProConOSPLCs via the TCP/IP Protocol (Internet or Ethernet).
The ProConOS OPC-Server is responsible for the data exchange between Windows and Windows CE applications and ProConOS PLCs via the manufacturer-independent client/server interface OPC (OLE for Process Control). For example, visualisations or databases can access process data of the control via the OPC-Server.";
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 = '';
}
}