var fDesc=new Array();
fDesc[0] = "Bible Trivia Pro Features:
* 2000 Biblical questions, taken from the Old and New Testaments.
* Test your knowledge of the Bible. The questions get harder with each correct answer.
* Family friendly entertainment for everyone: created with a passion for learning more about the Bible.
* Customize your own personal version. Bible Trivia Pro lets you add your own Bible trivia questions to our already large database.
* Print off quizzes tailored to your needs. Bible Trivia Pro's unique quiz feature makes it a valuable tool for Sunday School, Youth Ministry, Adult Learning classes, and a host of other Church Ministries.
* Enjoy the challenge on your own or as part of a group. Hours of learning and challenge for one or many.
* Inspirational and educational.
* Gain wisdom and become more knowledgeable about the Bible.
* Windows, Mac OS X, Linux and Unix compatible versions available.";
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 = '';
}
}