var fDesc=new Array();
fDesc[0] = "This program is an efficient file recovery utility to recover data from NTFS disks on local modern computers where NTFS partitions are very common. ExtFS support has been added as a courtesy to Linux lovers.
File systems supported: NTFS, NTFS5 (created or updated by Windows 2000/2003/XP/Vista/2008/Win7) and Ext2/Ext3/Ext4 FS (Linux).
R-Studio NTFS recovers files of less than 64KB from FAT (FAT12, FAT16, FAT32, exFAT), HFS/HFS and Little and Big Endian variants of UFS1/UFS2 partitions on local disks and over the network.";
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 = '';
}
}