var fDesc=new Array(); fDesc[0] = "This is an data logging software. It is used for system configuration (naming sensors, setting alarm thresholds), downloading of data to a computer (for long term storage), graphical analysis of data (using inbuilt features or exporting data to other software applications), publishing data to a website (graphs and raw data), and computer print-outs (print graphs, raw data, summary reports)."; 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 = ''; } }