var fDesc=new Array();
fDesc[0] = "It is a professional, reliable and fast utility for converting partition from NTFS to FAT32 or FAT32/16/12 to NTFS without losing data.
Main Features:
- Easy to use with step-by-step guide to change partition file system.
- Format or Reformat to FAT32 partition from NTFS nondestructively.
- Support FAT32 partition larger than default 32GB.
- Support NTFS partition capacity up to 2TB.
- Support disk storage devices including SSD, IDE, SATA, SCSI, USB disk, FireWire disk 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 = '';
}
}