var fDesc=new Array();
fDesc[0] = "Free Bible Reader is an easy-to-use freeware application that enables you to read the Bible.
The program provides two versions of the Bible: World English Bible and the American King James. It also features the both books from the Old and The New Testament.
Benefits:
- Reader: page mode, scroll mode, zooming
- Text Search: whole words, partial words
- Passage Lookup
- Spurgeon: morning, evening
Requirements: .NET 3.5";
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 = '';
}
}