var fDesc=new Array(); fDesc[0] = "KISS (KIPR's Instructional Software System) IDE is a multiplatform programming environment developed by the KISS Institute for Practical Robotics for use in the robotics classroom. The current version of KISS IDE supports the C, C , and Java languages and the CBC series of robot controllers. KISS IDE is currently in beta, and is not suitable for tasks which demand stability."; 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 = ''; } }