// Adjust Layout

function adjustLayout()
{
  // Get natural heights and widths
  var nbHeight = xHeight("newsbriefs");
  var mvpHeight = xHeight("mvpsforchange");
  

  // Find the maximum height of the Newsbrief and MVP columns
  var maxHeight =
    Math.max(nbHeight, mvpHeight);
	
	
  // Assign maximum height to all columns
  xHeight("newsbriefs", maxHeight);
  xHeight("mvpsforchange", maxHeight);
  
  // Show the footer
  xShow("countryinfocus");
  
}




