var fDesc=new Array();
fDesc[0] = "DedupeExpress - Data Deduplication Software.
Main Features:
- Simple to use and fast
- Deduplicate and cross match customer records
- Affordable pricing structure based on number of records
- English, French, German, Italian and Spanish Language Support using Fonetix™
- Extensive data transformation and synonym libraries for advanced standardization and matching
- Connects directly to any database or CRM application
- Merge, Purge and Re-assign orphans
- Data flagging and grouping using in-built data processor";
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 = '';
}
}