var fDesc=new Array(); fDesc[0] = "This is a compact powerful formula calculator which understands most of mathematical functions (trigonometric, hyperbolic, raising to power, extraction of any root,...), matrix operations, finds roots and minima of functions and calculates integrals. In contrast to majority of calculators it designed as single line on your desktop and 1) occupies minimum of desktop place; 2) lets you type in sequences of operations with many brackets and then calculate the final result (example: 123*(456-78)*sin(1)-exp(0.3)**(1/3)+7). You can easily change any component of a formula and calculate it again."; 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 = ''; } }