var fDesc=new Array();
fDesc[0] = "Powerful 32-bit spreadsheet program with over 130 math, financial, scientific, statistical, string, date and time functions. Superb graphics. New macro programming language implementation. Min/Max Linear Programming. Goalseeking. Linear and Non-linear Multi-variate Regression. Internal and External User-definable Functions. Text Search & Replace. File Linking. Integration & Recursion. Beta and Gamma functions. Gaussian & Poisson distributions. Year 2000 ready. Much more..";
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 = '';
}
}