var fDesc=new Array();
fDesc[0] = "LESSONmaker takes the pressure out of preparing for Bible study lessons by letting you pull together customized Bible studies in a fraction of the time it takes to start from scratch. Some of the unique features of latest version of LESSONmaker include :
-- Build lessons based on topic or key words,
-- Add high quality photos and format your lesson for professional looking print outs,
-- Share your lessons online,
-- Built-in, flexible word processor capabilities, enables you to add visual emphasis to your lesson,
-- Convert your lesson to PowerPoint.";
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 = '';
}
}