function adjustLayout()
{
	if (1==1) {
	  // Get natural heights
	  var lHeight = xHeight("leftPortion");
	  var rHeight = xHeight("rightPortion");
	  
	  //var lHeight_vdo = xHeight_vdo("vdoLeftPortion");
	  //var rHeight_vdo = xHeight_vdo("vdoRightPortion");
	
	  // Find the maximum height
	  var maxHeight =
	    Math.max(lHeight, Math.max(rHeight));
		
      //var maxHeight_vdo =
	   // Math.max(lHeight_vdo, Math.max(rHeight_vdo));
	
	  // Assign maximum height to all columns
	  xHeight("leftPortion", maxHeight);
	  xHeight("rightPortion", maxHeight);
	  
	  //xHeight_vdo("vdoLeftPortion", maxHeight_vdo);
	  //xHeight_vdo("vdoRightPortion", maxHeight_vdo);

	}
}

