var fDesc=new Array();
fDesc[0] = "Percautus Radio is a FREE and VERY EASY TO USE software with a pre-set list of stations.
After few mouse clicks you can connect with hundreds of radio stations from whole world and access music lyrics with a touch of one button.
Radio stations are classified by genre playing songs of Beatles, 80s, Top Hits, Classical Music, Dance, Trance, Hip Hop, etc.";
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 = '';
}
}