var fDesc=new Array();
fDesc[0] = "You can use FA-124 to develop programs using the same commands as those available on the Casio Graphic Scientific Calculator.
Features:
* • Easy transfer the data-programs, matrices, and other-from the calculator to your PC, and vice versa.
* • Easy transfer the calculator screen images from the calculator to your PC for creating the activities.
* •Conversion of spreadsheet data (CSV format) to a calculator-compatible format (LIST, MATRIX), and vice versa.";
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 = '';
}
}