var fDesc=new Array();
fDesc[0] = "wxMaxima is a cross platform GUI for the computer algebra system Maxima based on wxWidgets.
Main features:
- 2D formatted math display: wxMaxima implements its own math display engine to nicely display maxima output.
- Menu system: most Maxima commands are available through menus. Most used functions are also available through a button panel below the document.
- Dialogs: commands which require more that one argument can be entered through dialogs so that there is no need to remember the exact syntax.
- Create documents: text can be mixed with math calculations to create documents. Documents can be saved and edited again later.
- Animations: version 0.7.4 adds support for simple animations.
- Command completion: version 0.8.4 adds command completion and templates for Maxima functions and variables.";
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 = '';
}
}