var fDesc=new Array();
fDesc[0] = "SN's Hymnal Control is a customized cater software with two special needs:
1. To enable the person or team of persons making a presentation slide show for a church service to copy to clipboard hymns and prayers from a database via a simple button click and also, if desired, to automatically create the MS Powerpoint presentation with selected screen size, orientation, margin offsets, slide/text block animation and template file.
2. To maintain a record of the List For Service items in order that in a short period of time, it would be easier to decide upon the hymns and prayers for forthcoming services.";
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 = '';
}
}