var fDesc=new Array();
fDesc[0] = "BiblePromise is software that shows a different Biblica quote every day when your computer starts up. Also, you can choose to show the quote when you exit your computer. This is a good manner of starting and finishing a working day: listening to the Word of God.
The program is customizable, letting you choose, as we have said, if you want it to run at startup, at exit, or both. Also, you can choose the color of the text and change the background graphic, using an image of your own.
A very interesting feature is the program's integration with Microsoft Outlook and Outlook Express e-mail programs. You can choose to add the Biblical quote of the day at the bottom of your e-mails as a signature. This way, you will become a Messenger of the Word. This feature is not limited to Outlook, but you can set it in various e-mail clients like Eudora or Windows Live Mail.
The shareware version of BiblePromise has one month's worth of Bible quotes. After that time, you are required to pay a fee for obtaining the full version.";
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 = '';
}
}