var fDesc=new Array();
fDesc[0] = "DigiPro2 software manages inclinometer data, generates plots and reports, and provides corrections for systematic errors.
DigiPro2 replaces the original DigiPro and DMM, merging their functions into a single program that feels familiar, but is easier to use.
Unlike DMM and DigiPro1, DigiPro2 is written in a modern programming language and is guaranteed to run on modern versions of Windows, effectively future proofing your inclinometer 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 = '';
}
}