var fDesc=new Array(); fDesc[0] = "The GUI Bot software is designed to allow easy control and programming of a BASIC Stamp 2 microcontroller based robot through a simple set of actions that can be arranged into a list. The current GUI Bot software is designed for use with Boe-Bot robotic hardware.
The GUI Bot software supports the two types of sensors on the Boe-Bot robot: Infrared and Whisker."; 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 = ''; } }