var fDesc=new Array();
fDesc[0] = "MAGIX Webradio Recorder delivers exactly the music you want to hear to you every day from the Internet - legally, free, and unlimited!
The premium package for Internet radio offers you thousands of stations with every genre, with a quality check that works! Search through songs and save them to the hard drive, burn them, or load them onto your MP3 player all with a single click - welcome to the luxury standard for Internet radio";
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 = '';
}
}