var fDesc=new Array();
fDesc[0] = "GrafEq (pronounced 'graphic') is an intuitive, flexible, precise and robust program for producing graphs of implicit relations. GrafEq is designed to foster a strong visual understanding of mathematics by providing a reliable graphing engine that encourages exploration.
GrafEq is designed to foster a strong visual understanding of mathematics by providing a reliable graphing engine that encourages mathematical exploration.
GrafEq is used in schools and homes around the world. GrafEq offers an English, a Dutch, a Spanish, a French, a Korean, and a Japanese interface.";
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 = '';
}
}