var fDesc=new Array();
fDesc[0] = "Digiquartz® Assistant is a new Windows® based program that allows you to plot and log data parameters from up to 8 instruments having our RS-232 interface. These products include the series 1000/6000/9000 transmitters, Model 745, 760 portable standards, MET4 and MET4A Meteorological Measurement Systems, and Intelligent Depth Sensors.
The graphical, menu driven, format is easy to use. You may view and modify configuration settings and adjust plot scaling and data acquisition interval. A number of display options are also included with the program. Instrument configuration information may be printed for record keeping purposes.";
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 = '';
}
}