var fDesc=new Array();
fDesc[0] = "DBF Converters' Shell is a special program which helps you to study options and command line parameters of DBF Converters from WhiteTown program. It allows you to select necessary options, source files, an output file or folder and run the selected converter.
If selected converter is not found on your computer then this program will offer you to download it from Internet.
With this tool, you can select source files, an output folder or file, a conversion direction, necessary options, copy parameters to clipboard or run converters with selected parameters.";
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 = '';
}
}