var fDesc=new Array();
fDesc[0] = "Scabery Expression Calculator is simple and easy tool to perform arithmetic and trigonometric operations. Calculator content more that 50 functions, history, variables and much more.
Main features:
- Over 50 built-in functions
- Degrees, radians or grads
- Stay on top
- Copy/Paste
- Undo/Redo
- Customizable view
- Scientific Calculator
- History of Calculations
- Load/Save History
- Variables Support
- Load/Save Variables
- 10 Memory Registers
- Start with operating system
- System tray
- Mortgage Calculator
- Base Converter";
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 = '';
}
}