var fDesc=new Array();
fDesc[0] = "Personal Library Manager is an application that will help you manage your book collection.
Main features:
- Bulk ISBN lookup with cover retrieval
- Library statistics
- Search through title and author
- Filter records
- Create, backup, open, and compact databases
- Settings stored in xml so it's portable
- Loaned book management tool
- Set due dates and reminders
- Sort books past due
- Ability to add your own book properties
- Print support";
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 = '';
}
}