 <!--//--><![CDATA[//><!--
  var d = document;
  var rc = "right_column";
  var ct = "content_txt";

  function getHeight(){
      right_c = d.getElementById(rc).offsetHeight;
      content_t = d.getElementById(ct).offsetHeight;
      
      if(right_c>content_t) { 
      content_t = right_c
      d.getElementById(ct).style.height = content_t +"px"; //set the height of all divs to the tallest;
      d.getElementById(rc).style.height = right_c +"px"; //set the height of all divs to the tallest
      }

      if(right_c<content_t) { 
      right_c = content_t
      d.getElementById(ct).style.height = content_t +"px"; //set the height of all divs to the tallest;
      d.getElementById(rc).style.height = right_c +"px"; //set the height of all divs to the tallest
      }
  }
  ///--><!]]>