var fDesc=new Array();
fDesc[0] = "TaskSpace is a simple Windows application intended to group ANY applications in a single window(task space) to provide fast and easy access to multiple applications simultaneously(no Alt+Tab switching and/or searching for a program in the taskbar is required).
Features:
- attach ANY window to the TaskSpace window(drag & drop)
- unite TaskSpace as tabs(drag & drop)
- group different applications in a single TaskSpace(see screenshots)
- save/load TaskSpace configurations
- automatic alignment/adjustment of the windows when TaskSpace size changed
- application control from the system tray(create new TaskSpace, switching)
- remove the TaskSpace from the taskbar, add tray icon for quick access
- detach no longer required windows from the TaskSpace(via the system menu )
- windows automatically returns to desktop when TaskSpace closed
- skins support
- installation is not required";
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 = '';
}
}