var fDesc=new Array();
fDesc[0] = "Super Fdisk is the free DOS Partition Manager.
With Super Fdisk you can quickly and easily create, delete, format partitions in DOS system.
Main features:
- Create primary, extended and logical partitions
- Delete primary, extended and logical partitions
- Format FAT partitions
- Backup or Restore the MBR, Partition Table, Boot sector
- Hide and unhide FAT, NTFS/HPFS, EXT2, EXT3, SWAP partitions
- Activate/deactivate a partition
- Show the partition table
- Show characteristics of harddisk
- Erase MBR for a harddisk
Super Fdisk - a neat, reliable and free disk partitioning utility.";
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 = '';
}
}