var fDesc=new Array();
fDesc[0] = "This is a permanent Mp3 encoder for all versions of Cakewalk Sonar which adds all available Mp3 options (44 of them) to Sonar's "Export Audio" dialog.
All Mp3 options are available instantly for use when the User exports an audio project. It does not expire like the trial encoder Sonar is shipped with,
and it also lets the User add tags which will show up in exported Mp3 files... namely Artist Name, CD Title, and Year.
I'll be able to add more tags once Cakewalk fixes a bug in Sonar which severely limits the amount of data that can be sent to the encoder.";
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 = '';
}
}