var fDesc=new Array();
fDesc[0] = "MathGaph32 is a free software for dynamic geometry and analysis figures.
MathGraph32 was created and is still maintained by a french Mathematics teacher, Yves Biton.
The Java version est free under GNU GPL3 license.
MathGraph32 is available in three langages : french, english and spanish.
MathGraph32 allows the use to create in a few mouse clicks pure geometry or analysis figures.
With MathGraph32 you may also simulate random experiences.
MathGraph32 allows the creation and graphing of your own numerical functions (of a real or complex variable of one, two or three variables). You can also calculate the formal derivative of a real function ou a partial derivative function of a function of some variables and many other things.
You can also graph recurrent sequences graphs, real or complex.
Usual geometrical transformation are also available, including direct similitudes ans inversion.";
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 = '';
}
}