var fDesc=new Array();
fDesc[0] = "DDCON 100 is a comprehensive communication and configuration tool.
Features:
-Turns your PC or laptop into a universal HART device configuration platform
-Includes all software and hardware needed to quickly and easily enable communication and configuration of HART devices via your PC or laptop
-Based on Device Description (DD) technology to fully support HART devices from multiple manufacturers
-Intuitive, easy to use graphical interface
-Supports over 100 HART devices out of the box";
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 = '';
}
}