var fDesc=new Array();
fDesc[0] = "MatheGrafix is ​​a program for drawing, presenting and printing function graphs with value tables, geometric objects also for analytical geometry, statistical distributions, probability trees and fractals.
MatheGrafix is ​​suitable for pupils, students, teachers, professors, parents, tutors, institutions such as publishers and schools and anyone else who wants to present a functional graph, geometric objects or drawings to the best in quality statistics.";
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 = '';
}
}