var fDesc=new Array(); fDesc[0] = "MB Splitter Control Place this control on a form to immediately achieve splitting capabilities. It works as a container control, and the controls you drop on it will be automatically resized when the end user moves the splitter bars. You can control the splitter bar's size, color, and position, and programmatically assign controls to its two panes. The SplitBegin and SplitComplete events inform you when the drag operation begins and ends, so your code can do any additional processing as required."; 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 = ''; } }