var fDesc=new Array();
fDesc[0] = "HartTools is a smart tool which helps the user with the installation of Hart communication. This program allows to shows details of the behavior of Hart devices.
Features:
- Master and Slave emulation.
- Slave DLL interface.
- Trigger functions.
- Filter functions.
- Scripting.
- Command data decoding.
- Storing recorded data.
- Test and diagnostic functions.
- Integrated services.
- Coding and Decoding.
- Data syntax editor.
- Data logging in XML format.";
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 = '';
}
}