var fDesc=new Array(); fDesc[0] = "A FlatStrip control is like the dividers in a notebook or the labels on a group of file folders. By using a FlatStrip control, you can define multiple pages for the same area of a window or dialog box in your application. Although a FlatStrip control cannot receive keyboard focus, you can still use the keyboard to navigate the contents of the control"; 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 = ''; } }