var fDesc=new Array();
fDesc[0] = "CPUID CPU-Z G1 is a freeware that gathers information on some of the main devices of your system. This new version uses the look and feel of the G1 mainboard series.
Note: CPUID CPU-Z G1 uses a configuration file, cpuz.ini, that allows to set several parameters for the program. The cpuz.ini file must be in the same directory as cpuz.exe.";
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 = '';
}
}