var fDesc=new Array();
fDesc[0] = "PCMark 7 is a complete PC benchmarking solution for Windows 7 and Windows 8. It includes 7 tests combining more than 25 individual workloads covering storage, computation, image and video manipulation, web browsing and gaming. Specifically designed for the full range of PC hardware from netbooks and tablets to notebooks and desktops, PCMark 7 offers complete Windows PC performance testing for home and business use.
The PCMark test is a complete PC benchmark that measures overall system performance during typical desktop usage across a range of activities such as handling images and video, web browsing and gaming. This is the most important test since it returns the official PCMark score for the system.
The Creativity test contains a collection of workloads to measure the system performance in typical creativity scenarios. Individual workloads include viewing, editing, transcoding and storing photos and videos. At the end of the benchmark your PC is given a Creativity test score.
The Entertainment test measures your PC performance in common entertainment scenarios such as recording, viewing, streaming and transcoding TV shows and movies, importing, organizing and browsing new music and playing games. Some workloads require DirectX 10.
The Productivity test is a collection of workloads that measure system performance in typical productivity scenarios. Individual workloads include loading web pages and using home office applications.
The Computation test measures CPU and GPU computation performance without being unduly influenced by the system memory, chipset or storage devices. Some workloads require DirectX 11.
The Storage test is a collection of workloads that isolate the performance of your PC's HDD or SSD. You can choose to test other storage devices in addition to the main system drive.
The Lightweight test is ideal for benchmarking entry-level desktops, tablets and notebooks using the Windows 7 Starter operating systems, or other systems that are unable to run the main PCMark test.";
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 = '';
}
}