// Left Nav Hack for when no submenu is showing
try
{
  with (document.getElementById("subNavLeft12")) {
    if (innerHTML == "") {
      id = "sssss";
      style.marginTop = "-19px"
    }
  }
}
catch(e) {}

// adjust the height of the content area to match the right col
try {
  var docClientHeight = (document.all) ?
    // ie
    document.getElementsByTagName("body")[0].clientHeight :
    // gecko browsers
    document.getElementsByTagName("html")[0].clientHeight;

  var wBoxHeight = document.getElementById("whiteBoxContent").scrollHeight;

  var rColHeight = document.getElementById("rightCol").scrollHeight + 26;
  
  var s = "wBoxHeight: " + wBoxHeight + "\n";
  s += "rColHeight: " + rColHeight;
  //alert(s);
  
  /* if (wBoxHeight < rColHeight) {
    document.getElementById("whiteBoxContent").style.height =
      rColHeight + "px";
  } */
}
catch(e) {
  // alert(e);
}

