var fDesc=new Array();
fDesc[0] = "This is an easy-to-use, Windows-based statistical software program for marketing research that performs multiple functions, including: random numbers generator, sample size determination, mean, standard deviation, standard error, and range, standard error of a proportion, significance testing, correlation, cross-tabulation, factor analysis, multiple regression, and cluster analysis.
Stats 2.0 requires a windows-based operating system to run, (Stats 2.0 does not run on MAC computers)";
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 = '';
}
}