var fDesc=new Array();
fDesc[0] = "Software created to help you with your statistical endeavours.
Main features:
-Project and non-project mode
-Built-in import of plain-text data files
-More than 30 transforms and similar procedures; Box-Cox technique with several options
-Random number generators for several discrete and continuous distributions
-Five Bonferroni methods
-Monte Carlo simulations (tossing a coin/s, basic urn model, throwing a die/dice, random ints)
28 descriptive statistics
-Classical tests including z- and various t-tests, ANOVA (one-way, two-way, nested, repeated
measures/randomized blocks), ANCOVA, correlation and regression analysis, analysis
of frequencies (tests for goodness of fit and independence), F-test, Levene's and Brown-
Forsythe's tests, Shapiro-Wilk W test";
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 = '';
}
}