var fDesc=new Array();
fDesc[0] = "RoboMind is a program for teaching logic, robotics, computer science, and other technology to students. This tool comes with its own programming language named 'ROBO'; it is a concise language with a small set of rules which does not require much learning.
RoboMind can be used for science and technology projects at primary schools, secondary schools, and further education. It is also suitable for learning about problem solving and logical thinking.";
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 = '';
}
}