var fDesc=new Array();
fDesc[0] = "Dicompla is a multi-layer audio looping and sequencing tool with effects and mixing. It provides features such as:
- Adjust tempo, rate, reverse, loop-within-loop, panning and equalizers.
- Add multiple audio files to play simultaneously (multiple layers).
- Add effects to individual layers, to all layers or to all main output.
- Adjust effect parameters to change dynamically during playback with timeline point editor.
- Create multiple loops to form a playlist/song from the loops.";
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 = '';
}
}