var fDesc=new Array();
fDesc[0] = "Remo Outlook Backup and Migrate assists in backing up entire Outlook profile in one click.
The tool is actually capable of moving Outlook data to a new Windows computer and it provides you a customized solution with two different backup options - Smart Backup option can backup any Outlook attributes like emails, journals, Outlook settings, contacts and everything else from Outlook profile; Advanced Backup option lets you select and backup only the required attributes.";
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 = '';
}
}