var fDesc=new Array(); fDesc[0] = "This is a small program that plays a drum music when you hit the Pause/Break key in the keyboard. It can be used to play the drum as an appreciation when someone says a joke! The program can keep a log of timings and the jokes said.

If you need more drum sounds, you can try an online application at http://instantrimshot.com."; 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 = ''; } }