var fDesc=new Array(); fDesc[0] = "Fat32Format added support for bytes per sector values of other than 512, Fat32Format format volume to fat32,support up to 2TB bytes volume, Fat32Format support windows vista and later.
Formatting works on Windows 2000, Windows XP, and Windows Server 2003 and Vista. Note that Windows 9x/Me are not supported and do not work, but you can use the format.exe supplied with them instead.
fat32format works with Vista and later. The UI has changed a bit when creating drives and UAC makes the whole process a bit more cumbersome."; 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 = ''; } }