var fDesc=new Array(); fDesc[0] = "This utility sorts sections within notebooks and section groups and (sub)pages within sections. The sorting can be done by name or last Modified Time, ascending or descending, and can be done recursively (for sections in section groups in the currently selected notebook or section group, etc) or not. The sorting routines respect sub page structure. For some reason, the section groups themselves apparently cannot be sorted."; 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 = ''; } }