var fDesc=new Array();
fDesc[0] = "Adolix Email Backup is a powerful software that will backup your email if you are using one of the following email clients: Outlook Express, Microsoft Outlook, Incredimail or Eudora. Our product will backup email data like accounts settings, mail folders, signatures, message rules, address book and stationary. Because on a single PC could be more then a single identity (Incredimail for example), we decided that it would be very useful to be able to backup all of them or a specific one. Email backup should be a concern for you no matter if you are a home user or a bank manager.
Adolix Email Backup built in scheduler allows users to select what email client to backup and for each of them what components to save. Everything is saved to a single archive that can be protected by password. Because it's very common to use a remote server to keep important data, Adolix Email Backup can backup your email information to a FTP server. All you need to do is to configure it by entering you user name and password.";
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 = '';
}
}