var fDesc=new Array(); fDesc[0] = "SemTop! is a small tray application that lets you set a particular window on top of all others. Using the program is really easy. You can just drag the icon on the taskbar and drop to the window that you need on top. You can also set hotkeys for the operation. If you want a window to be always on top (even after restarting the computer), just "pin" it with Ctrl pressed."; 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 = ''; } }