var fDesc=new Array();
fDesc[0] = "OPC UA Sample Applications is a program that provides a suite of OPC UA Clients and Servers that demonstrate the OPC UA technology and its most popular functionality.
It comes with:
- A central dashboard application with the built-in documentation allowing you to launch applications.
- Samples that demonstrate DataAccess, HistoricalData and HistoricalEvents, Alarms and Conditions.
- Documentation designed to teach the concepts of OPC UA as well as the included sample 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 = '';
}
}