var fDesc=new Array();
fDesc[0] = "ShellEnhancer has the following features:
- The Enhanced TaskSwitcher can be used as a replacement for the standard Alt Tab taskswitcher. It has a nicer layout, supports keyboard and mouse navigation and can display a preview of the window. ShellEnhancer 3.0 or later supports Live Previews.
- The Mosaic TaskSwitcher is another TaskSwitcher which you can use as an Alt Tab replacement.
- Mini-taskswitcher is a new command that can be assigned to a task and thus for example to a mouse gesture.
- Auto Manage windows: Example: Each time a Notepad is started, activate Always On Top and set transparency to 30%.
- Create complex tasks which make your life easier. Tasks can be made to do a sequence of events you would normally have to do manually. But you can also use it to make simple tasks like starting screensaver, start notepad,... See below for a list of Available Task Commands.
- Use Mouse Gestures in any program to execute tasks.
- Use Screen Corners to execute tasks.
- Use the Shell Enhanced Applications feature to change the look of treeviews and listviews in a specific program.
- Show anti-aliased On Screen Display (OSD) when running a task.
- Put any window always on top.
- Change the transparency of any window. You can assign a different transparency when a window is active and when a window is not active. ShellEnhancer can also fade-out a window when it has been deactivated.
- Make all menus in Windows transparent.
- Make the Windows Taskbar transparent.
- X-Window style moving/resizing of windows.
- Set any window in "Keep Focus" mode to prevent other windows from being activated.
- Minimize any window to the system tray (the icons next to the clock of 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 = '';
}
}