var fDesc=new Array();
fDesc[0] = "If you want to sing, this is the software for you ! "Just sing" is a mix between a karaoke and a recording studio, and its FREE !!
Just connect your computer microphone, and record yourself singing with your favorite songs. Everything needed is packed into a single window, and you'll learn to use the software in a minute. Easily add studio equalization and effects to your recordings, and sound like a pro.";
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 = '';
}
}