// JavaScript Document<script type="text/javascript">
<!--

function SymError()
{
  return true;
}

window.onerror = SymError;

var SymRealWinOpen = window.open;

function SymWinOpen(url, name, attributes)
{
  return (new Object());
}


//window.open = SymWinOpen;

//-->
function adjustLayout()
{
  // Get natural heights
  var lHeight = xHeight("left");
  var rHeight = xHeight("right");

  // Find the maximum height
  var maxHeight =
    Math.max(lHeight, rHeight);

  // Assign maximum height to all columns
  xHeight("left", maxHeight);
  xHeight("right", maxHeight);

  // Show the footer
 // xShow("footer");
}

window.onload = function()
{
  xAddEventListener(window, "resize",
    adjustLayout, false);
  adjustLayout();
}