var fDesc=new Array();
fDesc[0] = "Enhanso Free is an easy to use yet advanced enhancing, optimizing and tweaking tool for Windows.
- Do you use Windows and want to make it faster?
- Are you searching for a setting and can't find it?
- Are you an advanced user and want to tweak Windows' every bit to get maximum performance?
If so then you just have found the solution!
With a clean and simple interface it brings you an All-in-One set of powerful and neatly classified tools, settings and tweaks.
As a bonus there are some unique and uncommon options too.";
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 = '';
}
}