var fDesc=new Array(); fDesc[0] = "Microchip’s Graphics Display Designer X (GDD X) is an enhanced visual design tool that provides a quick and easy way of creating graphical user interface (GUI) screens for applications built on Microchip’s 16-bit and 32-bit MCUs. You can easily click and drop widget elements like buttons, sliders, meters and dialog boxes."; 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 = ''; } }