var fDesc=new Array(); fDesc[0] = "It's designed to control the hardware in the Mini RC Car project. This software allows you the ability to control the car with the keyboard allowing for greater control and also give you the ability to program the car, so you can tell it to move forward for 5 seconds, then backward for 2 seconds...
It's actually a fairly powerful program. If anyone's interested in mimicing my Mini RC project, I'll help you out and you can use my software to control it. (Now Supports NT/2K/XP also)."; 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 = ''; } }