var fDesc=new Array(); fDesc[0] = "The SCADA Engine BACnet OPC Server is a server that provides data access (DA), Alarms and Events (AE), and Historical Data Access (HDA) between OPC clients and BACnet-compliant devices. Reading and writing to all BACnet properties is supported. This makes it possible to configure the On/Off times in BACnet Time Schedules and many other advanced BACnet features. A device discovery routine automates the creation of OPC Tags based on the BACnet Devices connected to the network. Configuration data is saved offline in a CSV file."; 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 = ''; } }