var fDesc=new Array();
fDesc[0] = "WinUtil is a useful and reliable Windows tool.
Features:
- Install- and uninstall-function added
- HAT = Hide - Always on top - Transparent button added
- HAT are only added to the active window you are working on.
- Dynamic interval on the timer for moving the HAT window. It is also possible to remove the HAT buttons.
- All settings are now saved.
- HOTKEYS: Alt-A = Hides all visible windows, Alt-S = Shows all hidden windows.
- No tagging on the desktop and systray
- Automaximize Internet Explorer windows, dynamic interval.
- Selected windows in the "Window Selector" is always selected
- Preferences window is now taking care of settings
- When windows are hidden, their icon is shown in the systray. A hide to tray function.
- New preferences added to the program. Will be disabled until next release";
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 = '';
}
}