var fDesc=new Array();
fDesc[0] = "xlStatistician is a comprehensive yet simple to use add-in for Microsoft Excel 2007 and Excel 2010. The software performs high quality statistical analysis based on series of easy to use forms, activated via the Excel ribbon.
xlStatistician works in a unique way when compared to other Excel based statistical analysis software. Most importantly, it allows the user to store a data set and perform multiple analyzes on it, a method used by all high end statistical software, but lacking in other Excel add-ins which require the user to reselect data over and over again when they return to the spreadsheet.";
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 = '';
}
}