var fDesc=new Array(); fDesc[0] = "Protected partitions' entries are hidden from the drive partitions table. The protected partition is invisible to the operating system and other programs. The partition remains protected even if the software is uninstalled or the drive is connected to another computer. You will need Disk Password Protection and the correct password to disable protection. After the password has been entered, the partition will be visible and ready for reading/writing."; 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 = ''; } }