var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to add text or CSV files into a FoxPro database. The user chooses the DBC file or free table folder and tests the connection before proceeding to add files or an entire folder of files to load. The user can specify the character used as field separator, comma is the default. The software has options for the creation of new tables or appending the data to existing tables. Table columns can be created based on the first line in the file or following user specified names. Access 2000 or higher required for this FoxPro software."; 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 = ''; } }