var fDesc=new Array(); fDesc[0] = "The ISR software provides an easy-to-use Graphical User Interface that accepts JEDEC or hex files as input. The JEDEC/.hex files are used to compose platform independent STAPL/SVF files. STAPL/SVF files contain all the information needed to program a CPLD device. The ISR software is used to define how many devices are in the daisy chain and what operation is to be done on each Cypress device. The same chain can be used with other JTAG-compliant devices."; 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 = ''; } }