var fDesc=new Array();
fDesc[0] = "MacDisk is a utility for reading, writing and formatting Apple Macintosh magnetic media on an IBM compatible PC, without any hardware modification of the computer and without the need for add-ons.
Supported Media:
- HD (High Density) floppy disks (1.44 MB),
- Plain hard disks without any capacity limit Caution, Thunderbolt disks are not supported yet.
- CD-ROMs, pure HFS, hybrid (HFS/ISO 9660) and even ISO 9660 CD-ROMs with Apple extensions
- DVD-ROMs, which are in fact just huge CD-ROMs
- Iomega Zip cartridges, 100 and 250 MB
- Iomega Jaz removable disks, 1 and 2 GB
- External hard disks connected on the USB or FireWire (IEEE 1394) bus
- SyQuest cartridges, all capacities
- Bernoulli disks, all capacities
- USB media (keys, drives, token)
- Magneto-optical cartridges of 128 and 230 MB (3.5") and of 300, 350, 600, 650 MB (5.25").";
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 = '';
}
}