var fDesc=new Array(); fDesc[0] = "AP4 is a standalone tool for automatically generating control programs (device driver programs) for peripheral modules in accordance with user settings. RL78 microcontroller is based upon a 16 bit CISC architecture with analogue rich functionality. AP4 provides a multi-tabbed interface where you can easily setup controller parameters using block diagrams, drop-down menus, and check-boxes, without programming. For advanced users, a "Code Preview" window is also available for directly editing the program."; 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 = ''; } }