var fDesc=new Array(); fDesc[0] = "Scratch Device Plugin is a free program that provides a bridge support between the LEGO WeDo and the Scratch application. It makes it possible to connect Scratch projects with external hardware (such as LEGO WeDo or PicoBoard) or sources of information on the web."; 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 = ''; } }