var fDesc=new Array();
fDesc[0] = "Calculait is a non-graphing calculator with many functions and conversion constants.
Calculait has a simple built in help file which you access by clicking on the "Notes" button at the top right on the menu bar.
Main Features :
- Date addition, subtraction
- Modular arithmetic.
- Display numbers is fixed or scientific notation.
- Change polar to rectangular coordinates.
- View "history tape" of calculations done in this session.";
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 = '';
}
}