var fDesc=new Array();
fDesc[0] = "OPC Servers are standardized software interfaces for data exchange between applications of different manufacturers. The Softing TCPIP-H1 OPC Server offers uniform access to the leading controllers of the companies Siemens, Rockwell Automation, Schneider Electric or Mitsubishi. This high-performance OPC Server is easy to configure and offers a wide variety of diagnostic capabilities.";
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 = '';
}
}