var fDesc=new Array();
fDesc[0] = "It is an application designed for technical plotting and data analysis. It has a powerful scientific spreadsheet for data analysis, and an object-oriented on screen graphics editor that makes it easy to design and modify graphs.
Main Features;
- powerful scientific spreadsheet.
- data import from Excel, ASCII, CSV, Access, DBase, etc.
- easy to learn, easy to use with step-by-step guided tutorial lessons.
- a wide range of numerical techniques.
- data interpolation and curve fitting.
- experimental model builder.
- multiple and stepwise regression.
- logistic regression.
- descriptive statistics, t-test, F-test.
- algebraic equation solver.
- differential equation solver.
- difference equation solver.";
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 = '';
}
}