var fDesc=new Array();
fDesc[0] = "Christian Message Board Live feed
Some of the salient features of BibleDatabase are
* Version 5 now with Multilanguage support!
* Multiple Bible interface,
* Complex search features such as combining case sensitivity and ignoring the order of search terms,
* View one or ALL installed Bibles simultaneously - by verse or by Chapter,
* Cut, Copy and Paste Text and Images from BibleDatabase to other Windows Applications,
* Maps and a Map [Image] Viewer,
* Look up a single verse in one Bible or show all Translations to compare texts,
* Full featured Word Processor and Rich Text Editor,
* Customize color schemes, fonts, default start-ups, Date format etc,
* Personal Prayer Diary with password protection and encryption for privacy,
* Quickly and easily find any prayers by Specific Date, Date Range, Type, Contents or Answer,
* Associate intuitive pictures with prayers for easy identification and reference,
* New modules and features are constantly being added to this site besides the titles already available,
* Additional Utilities and features include:
* Print and WYSIWIG Print Preview with ability to set Top, Bottom, Left and Right Margins,
* Set Date format,
* Select Font size, Font Color, Background Color for most forms,
* Powerful search tool for Prayer Diary,
* Full featured context sensitive Help,
* User customizable Splash Screen,
* And more ...";
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 = '';
}
}