var fDesc=new Array();
fDesc[0] = "SwordSearcher's main window lays out four "surfaces" for Bible study: the Bible Panel, the Book and Dictionary Panel, the Commentary Panel, and Search Results. While each panel may be hidden, they never overlap. You won't be lost in a deluge of cascading windows. Finding what you need is quick and direct.
main features:
-Expanded Treasury of Scripture Knowledge
-Easton's Bible Dictionary
-R.A. Torrey's New Topical Textbook
-Matthew Henry's Concise Commentary
-C.H. Spurgeon's Morning and Evening Daily Devotional
-Harmonies and Chronologies
-The King James Version with Strong's Links";
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 = '';
}
}