var fDesc=new Array(); fDesc[0] = "The DL2200 Data-Viewer is a Windows application that can read data files recorded by the DL2200 Data Logger. The program allows you to convert the files to CSV, so you can import them in Microsoft Excel. The viewer can only read data files stored on the memory card and cannot read files directly from the Data Logger."; 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 = ''; } }