var fDesc=new Array();
fDesc[0] = "Sound Masker generates various types of sounds for purposes such as suppressing unwanted noise from any source ( neighbors, dog barking, passing traffic etc ) and also serves as an audio privacy shield, helping keep conversations private in work based environments where confidentiality is a factor, or if your organization needs to meet specific noise standards. You can mix and match combinations and playback the output in realtime via speakers , or alternatively you can record the output straight to a wav or mp3 file, and create your own custom white noise masking CDs or Mp3s to playback anywhere. You can also save as many of your configurations as you like - for example you may wish to save one to help you sleep at night and another to mask noise throughout the day whilst keeping you alert and focused.";
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 = '';
}
}