var fDesc=new Array();
fDesc[0] = "Taskbar Hide is a unique taskbar management utility for Windows.
Main features:
- Hide any application window completely through a hotkey or as an icon in system tray.
- Hide some of the less used icons from the system tray.
- Arrange the windows on the taskbar based on your choice.
- Set application windows always on top.
- Hide any part of the taskbar according to your preference.
- Quiet all sounds when hide program windows.";
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 = '';
}
}