var fDesc=new Array(); fDesc[0] = "CPU Eat n Cool is an application that cools your CPU. The name tells it all actually. The application will perform certain commands so that your CPU remains cool even when several applications are opened. There are many applications like this, but they often take different approaches. Most of them increase the speed of your fans so that more heat can be exhausted from the surface of the CPU. However, that is not a solution to the problem, and, after all, fans are only so powerful. CPU Eat "n" Cool does things differently. Instead of taking the heat from the CPU it manages to keep it relatively cold. It achieves this by performing commands that decrease the "pace" of CPU-intensive operations. It doesn't completely stop them, but, when it detects an application that is causing some heat on your CPU, it automatically separates them from the rest and applies a slowing process to it. Of course, performance will be influenced by this. So, if you don't mind your CPU to run slower, this will take care of that excess of heat."; 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 = ''; } }