var fDesc=new Array();
fDesc[0] = "BYclouder Partition Recovery Ultimate is a data recovery tool and cross-platform that helps restore lost/deleted partitions and make non-booting disks bootable again when some accidental operation are caused by human errors,faulty software,viruses or deleting partition tables.
Main features:
- Recovering deleted/lost partition. Fixing partition table.
- Recovering NTFS boot sector from its backup. Rebuilding NTFS boot sector.
- Rebuilding FAT12/FAT16/FAT32 boot sector. Recovering FAT32 boot sector from its backup.
- Rebuildding FAT12/FAT16/FAT32 boot sector. Fixing FAT tables.
- Copying files from deleted/lost FAT, exFAT, NTFS and ext2/ext3/ext4 partitions.
- Undeleting files from FAT, exFAT, NTFS and ext2 filesystem.
- Locating ext2/ext3/ext4 Backup SuperBlock.
- Fixing MFT using MFT mirror.";
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 = '';
}
}