var fDesc=new Array(); fDesc[0] = "VLViewPort is a container control that provides scrollable viewport. It lets you specify the viewport extent and allows scrolling of the view whenever your form is smaller than the specified extents. It also supports automatic calculation of viewport extent based on the position of it's contained controls.

-Automatic adjustment of viewport extent
-Automatically display or hide scrollbars
- Automatic scrolling of viewport when user tabs through the contained controls
- Automatic filling of control's container, with margins on all sizes, on container resizes"; 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 = ''; } }