var fDesc=new Array();
fDesc[0] = "Fix-It Utilities Professional is a very sophisticated and professional class system maintenance tool that can help you to keep your PC running like new. It has everything that your PC may need.
An anti-virus, E-mail scanner, cleanup tool, defragmentation tool, backup tool, registry fixer, registry editor and system explorer, all these will provide you with a solution for any problem caused in any area of your PC.";
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 = '';
}
}