var fDesc=new Array();
fDesc[0] = "Get more out of your online gaming PC by monitoring these important performance indicators:
- Ping – by measuring your latency to a standard server, you can see the health of your Internet connection from second to second – and you’ll be surprised at what a “smooth” connection actually looks like.
- UDP offload – See all the traffic your Killer Xeno Pro is offloading for your PC, giving you less lag and smoother, more responsive online gameplay.
- CPU Load – find out when your system’s really lagging because of your CPU and not your Internet connection.
- Frames Per Second – the Holy Grail of online gaming. By keeping a close eye on your FPS, you can find the areas in your favorite online games that give you the most lag. (Optional: Uses the Fraps engine, the gaming community’s favorite framerate tool!)";
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 = '';
}
}