var fDesc=new Array(); fDesc[0] = "Quickplot is a fast interactive 2D plotter with infinite zooming, value picking, pipe input, and almost unlimited plots displayed. Quickplot is meant for looking at your data quickly and of secondary importance is making static pictures of your data. It's a data viewer, not a plot editor. It reads ASCII text and sound files. It has lots of command line options, making it very shell script friendly. It currently runs on GNU/Linux systems and I hear it works on Mac OS X Darwin."; 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 = ''; } }