var fDesc=new Array();
fDesc[0] = "Data Statistical and Graphical Analysis tool for MS Excel
Fast Statistics is an easy to use Statistical and Graphical Analysis tool for MS Excel , it can work as an Excel add-in and stand-alone software without excel installed , perform from basic data manipulations to the most advanced statistical analyses and produce sophisticated reports and charts. This is a ideal tool for Six Sigma, descriptive statistics, ANOVA, regression, dummy regression, intelligent data input, factor analysis, nonlinear regression, box plots, nonparametric tests, and correspondence analysis.";
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 = '';
}
}