var fDesc=new Array(); fDesc[0] = "Media Library Manager is a comprehensive church library software program designed to maintain resources and circulation. This program will allow a church library to: catalog all resources, maintain circulation, track circulation history for the resource and the user. There is user level security, barcode scanning capabilities, using the ISBN and an open Internet connection you can access the Library of Congress to auto fill the most important resource data fields."; 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 = ''; } }