var fDesc=new Array();
fDesc[0] = "HDDTurbo uses the free physical memory to speed up HDD read/write speeds. It can automatically adjust the cache size, the full use of memory without interfering with other processes.
Feature: Speed up HDD read/write speeds. Automatically adjust the memory usage. Detects the available hard drives and displays their full name.
Provides Physical memory , total and used, cache memory, Hit Ratio. Reads Queue depth.";
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 = '';
}
}