var fDesc=new Array(); fDesc[0] = "B4R is a development tool for native Arduino and ESP8266 programs. It contains all the libraries and functions for using Arduino features such as LCD Display, DC Motor Control, LED Control, Light Dimmer, Pulse Width Modulation, Servo Motor Control, and Button control. You can also install additional libraries by copying them to a separate folder, and setting the path on B4R."; 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 = ''; } }