var fDesc=new Array();
fDesc[0] = "ViewArgonaut is a Windows-based deployment, postprocessing, and diagnostic software program
that can be used with any SonTek Argonaut current meter (MD, SL, SW, XR, and Argonaut-ADV).
Main features:
-Diagnostics - Deployment site survey and diagnostics tool.
-Recorder - Extracts data from or erases the Argonaut's optional internal recorder.
-Deployment - Sets up the Argonaut for an Autonomous
or SDI-12 deployment.
-Realtime - Sets up the Argonaut to collect and display real-time data.
-Processing - Lets you play back and manipulate Argonaut data.";
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 = '';
}
}