var fDesc=new Array();
fDesc[0] = "Audio & Music Lab Premium stands for absolute top quality when recording, editing, optimizing and converting audio. An astounding repertoire of presets and effects guarantees amazing sound with only a few clicks. The detachable video monitor also makes working with video sound more convenient and effective. Impressive sound for music lovers and audiophiles.
Audio & Music Lab Premium supports most standard audio and video formats. These can easily be imported and enhanced with effects, cropped, optimized and exported in a format of your choice.";
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 = '';
}
}