var fDesc=new Array();
fDesc[0] = "3D CPU Meter is a small and simple application that shows you the CPU usage.
It has a 3D like background picture and the meter hand drawn by GDI+. This is not a DirectX based application, but this could be a good example of 3D looking 2D application.
Please note that this meter looks 3D graphics, but it's just 2D application. So, you can't rotate the meter.";
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 = '';
}
}