var fDesc=new Array(); fDesc[0] = "FRC Toolchain installs compilers and other tools that are required to support the ARM platform on the roboRIO. These can be used to build programs for FRC robots. This program is available in 2015, 2016, and 2017 versions. The 2015 toolchains will not work with the 2016 development tools; you must install the 2016 toolchains. You must also rebuild the code from previous years that you want to deploy on your 2016 robot."; 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 = ''; } }