var fDesc=new Array(); fDesc[0] = "Db2Html is supposed to be used as a mp3 list program. Put in your mp3 cd and add the titles of the albums to the programs database. Edit the database, press 'make list' and you have a nice html list over your albums. Program also supports automatic upload to a ftp server for your list.

Start Db2Html and choose 'New configuration' from the file menu. The configuration holds information of files:

-Database - Just a textfile for saving your album titles
-Output - The list
-Headfile - The file with the html code that comes before your list
-Endfile - The file with the html code that comes after your list"; 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 = ''; } }