var fDesc=new Array();
fDesc[0] = "Q-EditPro is the best sound editor that SoundTower Software developers created. It is a completely redesigned program with greatly improved user interface and intuitive functions. With a few clicks of mouse you can browse the whole content of the complicated Q engine. You can change parameters on fly using controls, or even mouse wheel or simply organize your Multies and Sound Banks.
Features:
- Browse through your sound banks. Copy paste and rename Sounds
- Organize your sounds into categories using Sound Librarian
- Create new Sounds using Mix Morph Mutate and Randomize functions
- Save/load/write as Multi Arrangements: Multi settings+ 16 Sounds and a Drum Map
- Multi Mixer to adjust all 16 channels together with 2 FXs.";
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 = '';
}
}