var fDesc=new Array();
fDesc[0] = "It is an audio alignment application for music and post-production.
Main Features:
- Automatically align two audio signals so that the timing of one matches the other.
- Sophisticated pattern matching techniques that reject guide track noise and work with different speakers, singers, words, instruments and sounds.
- The aligned audio can be auditioned within VocALign Project.
- User interface allows adjustment of selected audio regions for processing, and the scrolling, scalable display allows visual confirmation of sync.
- User-adjustable processing presets ensure optimal performance.";
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 = '';
}
}