var fDesc=new Array(); fDesc[0] = "Presenting concept of docking and autohiding applications. The Bar docks to one side of desktop. It includes notepad, calendar, reminder and fontviewer. But also it includes a sort of resizing autohiding desktop, where you accessories like Cd-player, Calculator e.t.c. You can also drag files to docking edge of The Bar to view them, lock them or put them in system tray (directly or in tray pop-up menu). Foldersin tray pop-up menus affect curend folder in any active open/save file dialog box."; 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 = ''; } }