var fDesc=new Array();
fDesc[0] = "This program is - the math expressions interpreter and analyser, the RTF formulas editor and Latex string generator.
That means, this program allows:
-to type whole the expression, and do the result computation after that;
-to check the results of intermediate actions;
-to edit the formulas using the RTF format advantages that allows to use formulas in verious RTF text editors including MSWord;
-to get the string compatible with Latex format for using on the sites which recognize it and in some publishing systems which support that format.";
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 = '';
}
}