var fDesc=new Array(); fDesc[0] = "The eLibrary Project is an ebook organizer with tagging and search capabilities.


It automatically downloads the book's cover image and info from the web, and displays them in a frienldy user interface (Check out the screenshots).


The book's info is downloaded using the ISBN, which you can be enter manually, or let the application guess it. Guessing is done by either searching the book on google, amazon or (only for PDF) scanning the text for the ISBN,
thus allowing you to quickly load books into the app."; 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 = ''; } }