var fDesc=new Array();
fDesc[0] = "The King James Bible and the King James Dictionary have been bundled into a single application software called SpiritMeal. With a set of exciting features, SpiritMeal has been designed to make your bible study both simple and enjoyable and best of all, it's absolutely free.
Main features:
-Bible study and scripture look-up
-Word or scripture searching
-Note-taking and referencing
-Font-size management
-Background Themes
-Articles of common interest
-Bible study links on the web
-The King James Dictionary
-Font-type selection";
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 = '';
}
}