var fDesc=new Array(); fDesc[0] = "eBudzik is just simple alarm-clock program.
All it's functionality is that it shows an analog or digital clock and allows to set alarm at given time which then plays selected mp3, mpg (audio) or wav file until stopped by user.
Additional features like play MP3 files, run given program when alarm occurs are also available. The clock can be displayed in window of any size and in full screen, you can minimize it to tray and you can disable exit from application."; 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 = ''; } }