var fDesc=new Array(); fDesc[0] = "The Start menu in Windows is a pretty good program launcher but it easily gets cluttered, making it difficult to navigate. On more than one occasion I've found myself going from menu to menu looking for a specific program without success. StartEase is an application launcher that solves this navigation problem by putting just your programs into an A-to-Z menu structure. In addition, you can easily search for programs. As soon as you start typing in the search box you'll see a list of matching programs that gets progressively smaller the more you type, narrowing the results."; 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 = ''; } }