var fDesc=new Array(); fDesc[0] = "Easy Visual Calculator is the easiest and most convenient visual math calculator in the world. In addition to using the input button, you can directly input, edit the expression. It is a handy replacement for the standard Windows calculator.

Main features:
- Support the passage of fast-moving up and down around keys to the adjacent input box;
- You can Type "=" or "Enter" key to calculate the results at any time;
- Includes precision control in the calculation result;
- Support comma in the calculation result;
- Auto-save calculation history, at the same time preserve its date, user-friendly memories;
- Support for up to 5 equation calculated at the same time, thus you can compare between the results of each calculation;"; 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 = ''; } }