function adjustLayout()
{
	if (1==1) {
	  // Get natural heights
	  var cHeight = xHeight("dxse_col2w_diskuswid");
	  var lHeight = xHeight("dxse_col3w_diskus");
	  
	
	  // Find the maximum height
	  var maxHeight =
	    Math.max(cHeight, lHeight);
	
	  // Assign maximum height to all columns
	  xHeight("dxse_col2w_diskuswid", maxHeight);
	  xHeight("dxse_col3w_diskus", maxHeight);
	
	  // Show the footer
	  xShow("footer");
	}
}

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


