var fDesc=new Array(); fDesc[0] = "This program makes the list of programs "drop out" just like it did in Windows XP. This feature allows you to save screen space and find the necessary programs faster. You can also organize programs in "virtual groups" (Office, Games, etc.) Since these groups are virtual, you won't see empty folders after uninstalling the programs. Groups can be "folded" (minimized) to make finding and launching your programs easier."; 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 = ''; } }