var fDesc=new Array();
fDesc[0] = "IDrive is a very secure backup and restore utility.
Main Features:
- Multiple device backup: It is build to backup unlimited PCs, Macs, iPhones, iPads and Android devices into a single account.
- Real time backup: IDrive automatically recognizes the modified parts of files and backs them up in real-time.
- Go mobile: Access backed up files from your PC and Mac.
- Manage multiple accounts: Create and manage multiple user accounts from a single administrative login, via the web.";
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 = '';
}
}