var fDesc=new Array(); fDesc[0] = "This program for those Audiosurfers that want the addons but don't have time/are lazy to search them, it's also like an addon database. When you start the program, that screen is shown asking you to select an addon, and then when you select one from the list, a brief description of what the addon does is shown and the "Run!" button is enabled (or changed by an "Open folders" one or a dropdown, depending on the selected addon).Once you press the "Run!" button, AHOAA will add an icon in the notification area which you can click to launch more addons, show AHOAA's main screen, run Audiosurf or exit AHOAA.
To change AHOAA's options, just click the Options button."; 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 = ''; } }