var fDesc=new Array(); fDesc[0] = "RAMDisk is a program that takes a portion of your system memory and uses it as a disk drive. It is a kernel-level driver that presents a standard disk drive to the OS. However, it stores and retrieves data from the system RAM on your motherboard instead of an actual, physical disk. You can partition, format, mount a volume, and assign multiple drive letters to RAMDisk. This program will speed up applications like games, Internet Explorer cache for faster web surfing, audio and video editing, CAD programs, software compilers, databases, and more."; 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 = ''; } }