var fDesc=new Array(); fDesc[0] = "In the Windows world... most controls support some degree of scrolling with the mouse wheel however one key part of Windows Home Server does not, the main tab list supports scrolling back and forth through the list of tabs using a pair or provided buttons, but not with the mouse wheel... until now.
Tab Scroller (like Tab Reorderer) uses some unsupported mechanisms in Windows Home Server and copious amounts of reflection to enable you to easily scroll back and forth when the list has focus."; 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 = ''; } }