
      function SetHeight() {
      var divh = document.getElementById('left').offsetHeight;
		var target = document.getElementById('middle');
		target.style.height = (divh - 660) + 'px';
		target.style.minHeight = (divh - 660) + 'px';
      }
