var fDesc=new Array();
fDesc[0] = "Quickly and safely cleanup and backup your contact list.
Main Features:
- Remove duplicate contacts
- Easily merge and resolve conflicts
- Eliminate duplicates across folders
- Powerful algorithm for safe, quick and thorough scans
- Automatically backs up your address book. Safe storage you can access and download any time in the future
- Safely revert your data back to its original condition at any point in the process. You have complete control";
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 = '';
}
}