var fDesc=new Array();
fDesc[0] = "SoundBoard is a small program to help set up sound effects and background music for parties or computer-hosted internet radio shows.
Main Features:
- Ten sound clips per page for easy grouping of related sounds.
- Plays any sound formats for which Windows has codecs.
- Play/Pause and Stop buttons for each sound.
- Allows the volume for each sound position to be individually controlled.
- Allows the sound buttons to be renamed as desired - simply right-click on the desired button.
- Allows sounds to be placed in 'repeat' mode by right-clicking the sound button and choosing "Repeat Mode".
- Hotkeys for each sound: 1-0 for buttons 1-10, Page Up/Page Down to change pages, and Backspace to stop all sounds.";
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 = '';
}
}