var fDesc=new Array();
fDesc[0] = "Provides ideas and tools that will help you become more efficient and effective in your church office - as you help the pastor and people in the church do their ministry.
It will help stimulate your creative thinking in ways to set up a well-organized and user-friendly church office!
Is designed so that you can go directly to any chapter that interests you without having to read the previous chapters.";
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 = '';
}
}