var fDesc=new Array(); fDesc[0] = "Studuino Programming Environment allows you to create programs for controlling how your robot moves. The program is designed so that even beginners can easily create advanced programs. Simply drag and drop the icons or blocks that control your robot into the Program Field. These programs are Arduino compatible. Programs created in the Studuino environment can be converted into Arduino language, which you can use to design even more advanced programs."; 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 = ''; } }