var fDesc=new Array(); fDesc[0] = "It creates a super fast RAMDisk that appears like a physical hard disk to the operating system and programs. The RAM disk bypasses the system hard drive, which is the slowest part of a computer. Freeing your data storage and retrieval from this mechanical disk gives your system an immediate boost. You choose its size (depending on the amount of RAM in your system), drive letter, and file system. You can copy, move and delete files on it."; 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 = ''; } }