function adjustPage()
{
  // Get natural heights
  var lHeight = xHeight("sidebar1");
  var rHeight = xHeight("mainContent");

  // Find the maximum height
  var maxHeight =
    Math.max(lHeight, rHeight);

  if (maxHeight < 452 )
  {
	  maxHeight = 452
  }
  // Assign maximum height to all columns
//  xHeight("content", maxHeight);
//  xHeight("sidebar1", maxHeight + (HM_IE ? 0 : 20));
  xHeight("sidebar1Gradient", maxHeight);
  xHeight("sidebar1", maxHeight);
  xHeight("mainContent", maxHeight);
//  xHeight("right", maxHeight);

  // Show the footer
//  xShow("footer");
}

function targetOpen(currLink, winName)
{

var win = window.open(currLink, winName);

win.focus();

}