var fDesc=new Array();
fDesc[0] = "This software offers a solution to users who want to convert one or more DBF files to CSV (comma separated values) files. The user chooses the option to process single or multiple file/s and then chooses the file/s. There is a check box to allow overwriting the existing file. Output can be customized using the following character field check boxes: remove CRLF in memo fields, enclosed with double quotes (here there is a box for entry of the character used to Escape double quotes), remove trailing spaces, header. Delimiters between fields can be chosen from the drop down menu options are: a comma, semi-colon, vertical line, TAB or none.";
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 = '';
}
}