function adjustLayout()
{
	if (1==1) {
	  // Get natural heights
	  var contHeight = xHeight("mainContentHolder");
	  var rSideHeight = xHeight("rightSide");
	
	  // Find the maximum height
	  var maxHeight =
	    Math.max(contHeight, Math.max(rSideHeight));
	
	  // Assign maximum height to all columns
	  xHeight("mainContentHolder", maxHeight);
	  xHeight("rightSide", maxHeight);

	}
}

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


