function adjustLayout()
{

  // Get natural heights

  var cHeight = xHeight("content2");
  var rHeight = xHeight("content3");

  // Find the maximum height
  var maxHeight = Math.max(cHeight, rHeight);

  // Assign maximum height to all columns
  

  xHeight("content2", maxHeight);
  xHeight("content3", maxHeight);
  
  // Show the footer
  xShow("footerspacer");

  
}

window.onload = function()
{
  xAddEventListener(window, "resize",
    adjustLayout, false);
  adjustLayout();
}

