var fDesc=new Array();
fDesc[1] = "coordinate plane automatically. It is highly useful for students and for scientific work. It supports a multilingual interface; many languages are included with the installation package and others can be easily downloaded.";
fDesc[3] = "functions, including forecasting methods";
fDesc[4] = "parameters to data with up to 20 independent variables. Define your own equations or choose from over 600 pre-defined equations.";
fDesc[5] = "Tables, Clustering, Correlation, Discriminant and Factor Analysis, GOF, Regression, Nonparametrics, PCA, Uni and Multivariate t-Tests and many more.";
fDesc[6] = ", Partial Least Squares Regression (PLSR) analysis and three-way PLS regression capabilities are unparalleled.";
fDesc[7] = ", web load testing and more. Offers easy visual and scripted test creation and test management.";
fDesc[8] = "decision trees that model data and can be used to predict values. Single-tree, TreeBoost and Decision tree Models can be created.";
fDesc[9] = "routines like Deciles, Grand Mean, Quartiles, Standard Deviation, Residuals, Hypothesis Analysis, Linear Regression Analysis, Multiple Regression Analysis. ESBStats provides a range of features like graphs, calendar, calculator, summaries, import/export, online help, live spell check and more.";
fDesc[10] = "data. View the changing graphs, including linear and non linear regression, interpolation, differentiation and integration, during entering.";
fDesc[11] = "the polynomial, the generalized correlation coefficient and the standard error of estimate.";
fDesc[12] = "XML formats and can be emailed automatically when a test completes to any number of email addresses.";
fDesc[13] = "specify to a set of data values. Virtually any type of function can be fitted.";
fDesc[14] = "generalized correlation coefficient and the standard error of estimate. Does multivariate regression. Displays 2D and 3D plots.";
fDesc[15] = "regression (curve fitting) engine to your software with just a few simple lines of code in any software or development environment that supports COM.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}