var fDesc=new Array();
fDesc[0] = "Fresh Diagnose is a utility designed to analyze and benchmark your computer system. It can analyze and benchmark many kinds of hardware, such as CPU performance, hard disk performance, video system information, mainboard / motherboard information, and much more.
Key features of Fresh Diagnose:
-System Information: Scanning your system and give a complete report about your computer's hardware and software, for examples: mainboard information, video system information, PCI / AGP buses information, peripheral (keyboard, mouse, printer, etc.) information, Windows registry settings, and network information.
-System Benchmarks: Testing your system performance, such as CPU, hard disk, CD/DVD ROM, and compare it with other systems.";
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 = '';
}
}