var fDesc=new Array(); fDesc[0] = "TopMost is a free, open source application that allows you to keep windows always on top of other windows.
This is very useful when you have an application that is maximized and fills the screen. You want to see it, work on it, but also use and see another smaller application.
For example, imagine reading a document and wanting to use some of the numbers in it in a calculator application. You would like to see the document and the calculator at the same time, to copy information from one to the other. In order to do it you should arrange the windows accordingly, often leading to minimizing the size of the document and making it hard to work with it."; 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 = ''; } }