var fDesc=new Array();
fDesc[0] = "TablePad is a tool to edit table-structured text files. You can read CSV files and also import tables from SQL databases via ODBC.
Some features of TablePad:
* read csv data files with configurable column separators, quotes, header lines and more
* supports ASCII files with codepages, and UNICODE files in UCS-2-LE, UCS-2-BE and UTF8 format.
* preview first lines while configuration
* save configurations
* import tables from ODBC data sources
* export into Excel
* insert / delete rows and columns
* search text
* language support : English and German";
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 = '';
}
}