var fDesc=new Array(); fDesc[0] = "ES-Plot is a FREEWARE program intended to be used as a tool for users who generate ASCII text data files and desire to make quick plots of the contents of these files. For example, scientists and engineers who write analysis programs often generate a text file of analysis results. ES-Plot can quickly plot the data in these files. ES-Plot is not intended to be a general purpose plotting program. Do not expect ES-Plot to provide a large number of plotting options. It was written with the express purpose to be quick and simple."; 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 = ''; } }