var fDesc=new Array(); fDesc[0] = "Extend the capability of the Windows Documents menu with this handy little utility that is accessed from the start button. View and sort by options let you configure exactly how the material is presented. Delete unwanted references to recently accessed documents with the delete button sitting right on the ribbon bar. Read the document by clicking on 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 = ''; } }