var fDesc=new Array(); fDesc[0] = "BookDB is a great software for people who end up buying books at double the price or the double of each book. It is also good for libraries where a record has to be maintained for books borrowed. In this system, all the books along with their details can be entered in many formats. The print mode is super condensed; for that reason a magnifying glass is required.

It has a feature that helps libraries because details about more than one copy can be maintained along with people who borrow the books. The LibraryThing feature of this software helps the user in accessing the database of their books, which is easy to search.

Barcode Scanners can also be used with BookDB software if the data are sent as key presses. BookDB can keep the data of around two thousand million books theoretically. But practically, computer speed determines the number of books. If the processor is average and the numbers of books are small, then the data can be displayed instantly. But larger databases take some time in displaying."; 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 = ''; } }