var fDesc=new Array();
fDesc[0] = "Sound Relaxation Studio is a new and interesting utility which helps you relax.
Features:
- Relax yourself with soothing sounds of nature
- Awaken inner peace and get a taste of real freedom
- Reduce stress with the healing power of sound therapy
- Increase creativity and overcome writer’s block
- Relax while you work at the computer
- Get a good night’s sleep
- Use it as a meditation aid
- Increase the effectiveness of your yoga routine
- Easy studying and increased concentration
- Relax before visualizing or saying your affirmations";
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 = '';
}
}