var fDesc=new Array();
fDesc[0] = "This application was designed with the strong idea in mind to make audio streaming capture available for almost anyone, not just professionals. Now, you are only a mouse click away from capturing popular game soundtracks, recording your favorite songs and broadcasts from Internet radio, Skype or MSN conversations, web broadcasts and audio conferences. What is great - you can store all these tracks on your computer, replay anytime and share with the others.
The radio recorder contains a database of 2100 radio stations and media streams. EzRecorder has a built-in radio player in which you can select a favorite radio station in any region of world.";
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 = '';
}
}