var fDesc=new Array();
fDesc[0] = "StereoClood is a lightweight windows Client for Stereomood. Stereomood is the emotional internet radio that provides music that best suits your mood and activities.
StereoClood displays by default the list of Mood & Activities sorted by their rating. Choosing one will load from Stereomood (or stereoclood cache) the list of songs, and will start to play randomly songs from the list.
Note: Credential on Stereomood are required to use Stereoclood, they are not known or stored by Stereoclood as it uses";
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 = '';
}
}