var fDesc=new Array(); fDesc[0] = "Soundboard is a multimedia tool developed to play clips. Drag the blue icons under the labeled buttons to the area labeled 1 - 8 at the lower right side. This area is the Playlist box. It doesn't matter where you drop the clip into the
playlist box. It will be added in the order it is dropped. When you are ready to play the
sound, press the play button. The blue icons also can be double clicked to be added to
the playlist. Creating a play list will allow you to string sounds in any order and play
them back in that order."; 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 = ''; } }