var fDesc=new Array();
fDesc[0] = "With MP3 Recorder you can easily record your voice or any other sound being played on your computer directly to the MP3 format.
Mp3 Recorder also allows you to set a bit rate of your choice.
MP3 Recorder is compatible with all Windows operating systems.";
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 = '';
}
}