var fDesc=new Array();
fDesc[0] = "DBF to XLS (Excel) Converter allows you to convert your dbf files to XLS (Microsoft Excel) format. MS Excel up until 2007 version used a proprietary binary file format called Binary Interchange File Format (BIFF) as its primary format. Excel 2007 uses Office Open XML as its primary file format. XLS is a wide-used format, many programs allow saving information in XLS format. It is very convenient and Microsoft Excel provides many possibilities for information management.
But MS Excel does not understand some types of dbf files, it does not understand memo fields, it does not understand long character fields. DBF to XLS (Excel) decides these problems. It allows you to transfer your dbf files to XLS or XLSX (Excel 2007) formats quickly and easily.";
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 = '';
}
}