function adjustVdoLayout()
{
	if (1==1) {
	  // Get natural heights
	  var lHeight = xHeight("vdoLeftPortion");
	  var rHeight = xHeight("vdoRightPortion");
	  var vdoListHeight = xHeight("root0");  
	

	  // Find the maximum height
	  var maxHeight = Math.max(lHeight, Math.max(rHeight, vdoListHeight));
		
	  // Assign maximum height to all columns
	  xHeight("vdoLeftPortion", maxHeight);
	  xHeight("vdoRightPortion", maxHeight);
	  xHeight("root0", maxHeight);

	}
	
_vHeight = parseInt(jQuery("#vdoLeftPortion").attr("offsetHeight"))- 60;
/*_vHeight = parseInt(jQuery("#vdoLeftPortion").attr("offsetHeight"))- 120;*/
instantiateScroller(0, "scroll0", 8, 0, 215, _vHeight, 100);
jQuery('div.vdoListHolder,div#root0').css('height',(_vHeight+20)+'px');
}
	