var fDesc=new Array(); fDesc[0] = "PowerPod is a free downloadable utility. PowerPod makes it easy to quickly create custom Basic Atom programs for your H3/H3-R robot. The control options are: autonomous, PS2 remote control, and TTL serial control from a PC, PDA, or any other microcontroller. Many other control parameters can easily be modified with this utility."; 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 = ''; } }