var fDesc=new Array();
fDesc[0] = "EMS Data Import for InterBase/Firebird is a powerful tool to import data to InterBase/Firebird tables from MS Excel 97-2007, MS Access, DBF, XML, TXT, CSV, MS Word 2007, RTF, ODF and HTML files. It provides adjustable import parameters, including source data formats for all the fields and destination InterBase/Firebird data formats for the selected fields, commit options, number of records to skip, etc.
Data Import for InterBase/Firebird includes a wizard, which allows you to set all the InterBase/Firebird import options for different files visually, and a command-line utility to execute import to InterBase/Firebird database in one-touch.";
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 = '';
}
}