var fDesc=new Array();
fDesc[0] = "The Cimetrics BACnet Explorer is a BACnet client that supports the BACnet/Ethernet and BACnet/IP Data Link Layers. Using the BACnet Explorer, users can discover every connected BACnet device on the network as along as they are all configured to the same Data Link Layer. Devices on different Data Link Layers can also be connected using a BACnet Router.
Using the Explorer, users can auto populate BACnet device information with just a few mouse clicks. Discovered objects can be queried for their properties and values. Values can also be changed using the Explorer for objects that support this service.";
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 = '';
}
}