var fDesc=new Array(); fDesc[0] = "Windows Controller lets you to use keyboard shortcut key (the hotkey, e.g. Ctrl Alt K ) to execute a set of commands which can set the active window's position and size to custom values; move or resize each edge of the active window making it align to other window edges; and execute some Windows actions. There are 15 commands to move or resize (extend or shrink) each edge of the active window making it align to other window edges. Windows actions executed by hotkey includes Maximize or restore, Minimize, Undo Minimize, Move, Size, Always on top (toggle), Mute (toggle), Decrease or increase the master sound volume, Start default web browser, Start screen saver, Lock computer, Sleep, Log off, Restart and shutdown the computer. You can add new “custom” command to set the window's position and size to custom values. Come with the installation includes 14 custom commands like maximize window width or height; center horizontally or vertically or both, and etc. Changes made to the position and size of the window could be multiple undo and redo by using commands “Undo last command” and “Redo last command”. Custom command even supports optional self undo that is the second consecutive of the same command applied to an active window will undo the previous command resulting in restoring the window back to its original position and size."; 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 = ''; } }