var fDesc=new Array();
fDesc[0] = "ACT! Duplicates Cleaner lets you remove duplicate information in ACT! Contacts, Calendar, To-do and Opportunities quickly and smartly.
ACT! Duplicates Cleaner provides a wizard user interface lets you check and remove duplicate information step by step. You may delete the duplicate records you selected or delete all the duplicate records with a few simple clicks.
ACT! Duplicates Cleaner also provides options let you customize your own duplicate checking rules which you may remove duplicates as you wish.";
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 = '';
}
}