var fDesc=new Array(); fDesc[0] = "The application is a windows utility that runs in the system tray. At the canonical hours, bells will sound and a Psalm relevant to that hour will be displayed.
Improvements of Version 2.0 over Version 1.0 include:
- Three translations of the Psalms have been added:
1. King James Version
2. Book of Common Prayer
3. Douay-Rheims
- More control over the sound has been added:
1. User can select an MP3 file to play instead of the default bells
2. User can select to mute 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 = ''; } }