var fDesc=new Array();
fDesc[0] = "The ClassPad Manager for ClassPad series is software that provides a new way to learn about mathematics.
Features:
-Computer Algebra System
-Laplace Transforms/ Fourier Transforms
-Differential Equation Application
-Financial Function
-e-Activity function
-eActivity copy and paste into a word processor for editing.
-Geometric Graphing
-Spreadsheet Application
-Data communication with ClassPad series";
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 = '';
}
}