var fDesc=new Array();
fDesc[0] = "POLYMATH Educational is a computational system that has been created for educational or professional purpose.
Polymath Educational includes a variety of programs that helps users to apply very effective numerical analysis methods when is doing interactive problem solving on personal computer.
Results are displayed graphically for a simple understanding and for integration into papers and reports.
Engineers, mathematicians, scientists, students, or anyone with a need to solve problems will appreciate the efficiency and speed of problem solution.";
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 = '';
}
}