var fDesc=new Array(); fDesc[0] = "This is a basic conversion program. It takes the Palm logbook database (NPLP-LogDB.pdb for PRO v1.1, NPLP-Log2DB.pdb for PRO v1.2, PalmLogDB-Nlog.pdb for basic version 1.x and fbPL-Log.pdb for basic version 2.x) and generates a spreadsheet in .csv format. This format is a simple comma separated text file readable by most spreadsheet and database programs. This is only a one-way utility. You cannot generate a pdb file for use on the palm at this time. This program only reads from the pdb file and will not change any information. You should keep copies of your database files in a safe place in case of a hard reset."; 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 = ''; } }