var fDesc=new Array(); fDesc[0] = "GoGo Widget is a free application that allows you to test the GoGo Board’s functionalities. You can write Logo programs and configure the board to work with add-on modules including the Raspberry Pi. You need to run the GoGo Widget when using Tinker."; 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 = ''; } }