var fDesc=new Array(); fDesc[0] = "The Moxy PC application is used to set up the Moxy device and to download data that is stored on the sensor. The version boxes show the Firmware version and the calibration information on the Moxy sensor. You can use the Update Firmware button to load new versions of Firmware on the sensor. Also, you can use the Download and Clear Data buttons for downloading data from the Sensor and deleting the data on the Sensor."; 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 = ''; } }