var fDesc=new Array();
fDesc[0] = "Digiquartz® Terminal (DQT) is a Windows®-based terminal program, designed to communicate with the Digiquartz® Intelligent Instruments via the existing command set.
Any terminal program can be used to communicate with Digiquartz® Intelligent Instruments. Some of these terminal programs may require detailed configuration to be able to communicate with Paroscientific Intelligent Instruments.";
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 = '';
}
}