var fDesc=new Array(); fDesc[0] = "In the past adding some customization to Jordan Russell's Inno Setup one had to look for pieces of code and implement them into their own script. Now with this new generation of ISSI it's possible to add prefab functionality to Inno with just a few lines of code. These includes use the basic include functionality to quickly add and remove various customization. This is a great advantage to manually incorporating the desired customization into each script."; 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 = ''; } }