var fDesc=new Array();
fDesc[0] = "The USB-500 Data Logger Application comes with the device. You can set the logging rate and start-time, log data, plug the device into your computer's USB port, and download stored data. The data can also be saved to a comma-separated value (.csv) text file.
You can then graph or print the logged data, or export the data to other applications for use in spreadsheets and reports.
Each USB-500 Series data logger includes a long-life battery. The data loggers use blinking LEDs of different colors to indicate their logging status.";
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 = '';
}
}