var fDesc=new Array(); fDesc[0] = "S.M.A.R.T. Monitoring Tools allows you to monitor and check the S.M.A.R.T. values of your hard disks. Self-Monitoring, Analysis and Reporting Technology System is a technology used by almost all storage devices to provide an indication of the drive health. By checking S.M.A.R.T. values, you can predict whether the hard disk is prone to failure in the near future."; 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 = ''; } }