var fDesc=new Array(); fDesc[0] = "CdFly 0.3 is a CD collection manager that stores its data in a sqlite3 database.

The program can run on Linux, Mac OS X and Windows.

By reading your CDs, the program can identify the tracks on them. You can them modify the information, adding titles, covers and details to the entries.

You will then build a database that can be searched by any regular expresion, or used through a dynamic web page.

This program can be used in seven different languages.

You must enter all the information about the CDs in your collection, even the images of the covers. The program doesn´t use the CDDB (Compact Disc Database) through the Internet.

You can later read the information on the tracks for every CD on the list, add new CDs to the database, create a new database, or add new CDs to an existing database.

Once done, you will be able to look for a given theme. The program will show you only that the theme is in the database, no other information will be displayed.

The program will detect the size of every track as 44 bytes."; 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 = ''; } }