var fDesc=new Array();
fDesc[0] = "Advanced ETL Processor is a data integration application with the ability to control databases. The program transforms data based on data definition regardless of the underlying content. This means that it can re-use the data integration mappings again and again as the business data changes.
Features:
- Perform complex data validation and transformation.
- Receive, Send and process Emails.
- Generate XML Files.
- Load data from files into blob fields.
- Sort and de duplicate data.
- Generate Insert Statements from any datasource.
- Load data into the database from various files.
- Export data from the database.
- Save blobs into separate files.
- Load data into multiple targets.";
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 = '';
}
}