var fDesc=new Array();
fDesc[0] = "Easy like Windows itself.
Search and restore
- Within the Gigabank virtual drive, your data is displayed the same way it resides in your depotaccount. For better viewing, icons are tinted green.
- Though the intelligent caching and the database structure, browsing and searching is extremely fast.
- Restore your data to the original or to a new location with a right-click.
Status Center
- View your account statistics.
- Upload and download lists let you monitor the status of your transfers.
- The settings allow you to limit Gigabank to certain file types or enable the AES encryption, amongst others.
Main Features:
- Gigabank supports EXIF, ITPC and Vista tags
- You even can tag your data after uploading within the Gigabank virtual drive
- Speed up your uploads by opening the upload list, this gives Gigabank task priority
Requirements:
- PC with Windows® XP SP2 or Vista
- ADSL connection
- Administrator rights for installation";
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 = '';
}
}