var fDesc=new Array();
fDesc[0] = "MHGS CompCalc is a Freeware calculator for Windows 95/98/Me/NT/2000/XP/2003/Vista/2008/7. It evaluates mathematical complex expressions.
MHGS CompCalc is a mathematical complex calculator with the following features:
- Algebraic syntax, not case sensitive
- Parentheses ()
- Complex floating point numbers
- Implemented mathematical constants
- About 30 predefined complex functions and operations
- Choice between i or j as imaginary unit
MHGS CompCalc doesn't need a setup or installation.";
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 = '';
}
}