var fDesc=new Array();
fDesc[0] = "Handheld Software Tools (HHST) is legacy software that allows downloading traces from A, B, C, and D series Site Masters for PC based analysis and report generation.
The Handheld Software Toolsprogram provides the means for transferring measurement plot data from a Site Master. The program executes Intel Processor based personal computers (PC) running Microsoft Windows 95™, Windows 98™, Windows NT 4.0 Workstation™, Windows NT 4.0 Server™, and the new Windows 2000 Professional.";
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 = '';
}
}