var fDesc=new Array(); fDesc[0] = "PICPgm is an app designed to program PIC microcontrollers using an external programmer hardware connected to the PC. The program allows you to: check if a PIC microcontroller is empty, program a HEX file into a PIC microcontroller, erase a PIC microcontroller, read the content of a PIC microcontroller and save it to a HEX file."; 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 = ''; } }