
if (document.getElementById || document.all) { // minimum dhtml support required
  window.onload = winOnLoad;
}
function winOnLoad()
{
  var ele = xGetElementById('lhs');
  if (ele && xDef(ele.style, ele.offsetHeight)) { // another compatibility check
    adjustLayout();
    //xAddEventListener(window, 'resize', winOnResize, false);
  }
}
function winOnResize()
{
  adjustLayout();
}
function adjustLayout()
{
  // Get content heights
  var cHeight = xHeight('content-inner');
  var lHeight = xHeight('lhs');

  if(cHeight < lHeight){
			xHeight('content-inner', lHeight);
	}
	
}
