var fDesc=new Array(); fDesc[0] = "Hidden Disk lets you create a hidden virtual disk with password protection. You can create hidden folders and store any secret files on this disk. This disk works like a regular disk on your computer, but it can appear or disappear as you like. The password protection is optional and can be disabled."; 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 = ''; } }