var fDesc=new Array(); fDesc[0] = "Don't let programs decide whether you can get access to the taskbar!
Don't let the taskbar hide your applications because you have gone close to the edge of the screen with your mouse!

Taskbar Activate manages activation and deactivation of the Windows taskbar. It is specialy usefull for accessing the taskbar with special applications running (full screen windows, always on top windows, ...). It also prevents an inopportune taskbar window appearing over your application when the mouse goes close to the screen border.

Your screen is never enough large. So, you'd like to use full screen applications to see something else than the title, menu, status bars.
But, if so, it is quite impossible to switch between applications because you have no access to the taskbar. The taskbar is completely hidden by your full screen application.

Sure, it is possible to use ALT+TAB or CTRL+ESC or even the Windows key of your new keyboard (is it here only for this bug?).

TaskBar Activate awakes your taskbar when it is hidden by a full screen window and it has not agree to do this itself when the mouse come."; 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 = ''; } }