var fDesc=new Array(); fDesc[0] = "XLPlot is a light version of the Serf Software Suite, a suite of programs that is specifically meant for biologists. The primary purpose of XLPlot is to create a figure for scientific publication rapidly. It contains a few basic statistical functions, such as Students t-test and linear correlation of two sets of data (two columns in a spreadsheet). Also, it includes a number of build-in functions that can be fitted to the data in columns on a spreadsheet or to a curve in a graph. The user can easily add fitting functions of his own design."; 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 = ''; } }