var fDesc=new Array(); fDesc[0] = "PerfMonitor is a processor performance monitoring tool. It allows to track the frequency of 4 events choosen in a set of model-specific list. It can be used to identify the performance bottlenecks of a system, or to monitor a program for cache-miss rate or mis-predicted branches. But PerfMonitor can also be used as a hardware-level CPU comparison tool, comparing the key parameters of different CPUs runnning the same benchmark."; 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 = ''; } }