var fDesc=new Array();
fDesc[0] = "The Windows experience index is a property of the Windows operating system that measures the performance of hardware devices such as a processor, graphics, memory, etc. This gives you the rating of hardware as a number that can be compared with other computers. The feature was present in Windows 7 and Windows 8.
Those who need the same feature in Windows 8.1 can install this program.";
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 = '';
}
}