// JavaScript Document
function adjustLayout()
{
	if(!document.getElementById) {
		xShow("disclaimer");
		return;
	}
 // Get  height of page content
  var cHeight = xHeight("content");
  
  wWidth=xClientWidth();
  
  
 
  
  // Assign  height to left-hand ribbon
  xHeight("leftbar", cHeight + 31);
  xHeight("frame", cHeight + 31);
  xShow("leftbar");
 //xShow("frame");
}
window.onload = function()
{
  xAddEventListener(window, "resize",
    adjustLayout, false);
  adjustLayout();
}