var fDesc=new Array(); fDesc[0] = "Floating Frames for Excel is a Visual Basic program designed to launch multiple windows that each display an Excel range in a modeless window that is exactly the same size as the range of cells it displays. Clicking once on any of the displayed windows expands them to show functional buttons. In that state you can start a new window by clicking on the "Add New Window" icon or change the existing window by clicking on "Adjust Range". When you click on the "Keep 'Window Caption on top" button, that window will stay on top, no matter where you go (unless of course you click that button again to stop bringing it to the top). When you click the "X" button, that window closes, but other open windows will stay active."; 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 = ''; } }