var fDesc=new Array(); fDesc[0] = "CalculatorSmart Math Calculator allows you to define variables and solve math equations. It features a scientific calculator with commonly used functions. This program also lets you define and solve recursive functions. It automatically saves your calculations so you can continue from the last session every time you start the calculator.

Smart Math Calculator is a Standard and Professional versions of the Standard version having a precision of 1000 digits."; 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 = ''; } }