var fDesc=new Array(); fDesc[0] = "Robot Simulator is a complete virtual environment in which simple robots can be built, programmed and tested.

Robot Simulator is unique among other simulators because it is very simple to use and intuitive, this makes it an excellent educational tool and an excellent starting point for building and programming robots.

The program contains a basic set of robots, components and tutorials that allow the novice user to learn how to solve simple challenges and to get a hands on experience without the need to buy expensive electronic components, or to deal with the details of electronics and wiring."; 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 = ''; } }