var fDesc=new Array();
fDesc[0] = "Visual Ambience is software that mimics environmental sound. It reproduces the atmosphere and ambience of nature. The program can be used for enhancing concentration or relaxing.
It features:
Up to 32 simulatenous nature sounds.
Background ambience noise with random volume controls.
Sound effects with random panning and volume controls.
Randomize button.
6 pre-loaded scenarios.
Auto mode that controls the sounds settings with a changeable aggression level.
High quality realistic sounds.
Able to run from system tray.";
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 = '';
}
}