var fDesc=new Array();
fDesc[0] = "It is a driver for Intel® Turbo Memory, a PC component that caches large amounts of frequently used data for faster access by the processor.
For correct driver work the system must be 1 of the following systems, and have the correct version of the Intel(R) Turbo Memory Hardware:Intel(R) Mobile 965 Express Chipset Family Platforms supporting AHCI Mode; Intel(R) 3-Series Chipset Platforms supporting AHCI or RAID Mode; Mobile Intel(R) 4 Series Express Chipset Platforms supporting AHCI or RAID Mode;Intel(R) 4 Series Chipsets Platforms supporting AHCI or RAID Mode.
This driver package will conditionally install both the Intel(R) Matrix Storage Manager and the Intel(R) Turbo Memory driver.";
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 = '';
}
}