var fDesc=new Array();
fDesc[0] = "Holy Bible concordance is a software application that makes it easy to search the bible scriptures and cross reference with other bibles.
-Simple and Advance bible searches.
-Talk to your Bible.
-Write and Save your own Notes, interface with Microsoft Word.
-Export and Import Microsoft Word Documents.
-Compatible with Win 95, 98, 2000, XP, ME. A free Adobe Reader is also required as an added advantage. -The application still runs without Adobe Reader or Acrobat Reader.
-he Bible Concordance that uses Six bibles, including the Afrikaans bible.
-All Bibles can be used in parallel for bible cross references.
-The end of the traditional bible concordance that is limited to a certain keywords.";
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 = '';
}
}