var fDesc=new Array();
fDesc[0] = "Dexcom Studio is an accessory program intended to allow the transfer of glucose data stored by the Dexcom Continuous Glucose Monitoring System into a personal computer (PC). The software can be used by either a clinician or an end user.
Dexcom Studio displays the information in both charts and tables to help analyze trends and patterns in your glucose levels.";
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 = '';
}
}