var fDesc=new Array(); fDesc[0] = "Aural Probe is a sample librarian tool for computer musicians/audio engineers. The program can automatically and non-destructively index your disorganized sample collection from a list of folders into categories (kick, snare, hihats etc.) based on folder/filename wildcard matches. You can quickly audition through samples with arrow keys or mouse; mark favorites, filter by favorites, and load/save favorite lists; see details about the highlighted sample in the status bar, and more."; 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 = ''; } }