var fDesc=new Array(); fDesc[0] = "Create a list of person birth or death dates within a specified range and display the list on the CATraxx homepage. CATraxx is a program for managing your music collection. HAPbirthDates can use the CATraxx database to find artist information from songs.

If you run the program while CATraxx is running, the database used by CATraxx will be used. Otherwise, the default database will be used. If no default database has been defined, you will be asked to define one.

This program will only work with CATraxx version 9.00 or higher."; 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 = ''; } }