var fDesc=new Array();
fDesc[0] = "This program maps an IBackup account as a virtual drive on your computer.
Main Features:
- 256-bit AES encryption for secured data transfer and storage
- Compressed data transfer that speeds up backup process
- Versioning allows the restore of latest 30 versions of all files saved in your account to any location on your local machine
- Share files/folders for collaborative access
- File caching for faster retrieval of data
- File transfer resumption on temporary disconnections
- Proxy support
- Automatic proxy detection and update
- Supports international character sets of most major languages including French, Spanish, German, Chinese, Japanese, Hebrew, Italian etc.";
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 = '';
}
}