var fDesc=new Array();
fDesc[0] = "This program is a simple, but powerful uninstaller. It helps you to uninstall and remove unwanted programs installed on your computer.
Handy Uninstaller is a efficient and fast alternative to the "Windows Add or Remove Programs" applet. It has a lot of powerful features:
- Simple and user-friendly interface.
- Powerful search function.
- List installed programs with appropriate icons.
- Easy to use.
- Programs listing is very fast.
- Programs can be moved to special groups.";
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 = '';
}
}