/* Copyright Windrich DotCom, Inc. 2009 */

function adjustLeftDiv() {
  var d = document.getElementById('left-div') 
  var dh = d.offsetHeight
  if (dh < 1500){
    var diff = 1500 - dh;
    dh = dh + diff;
  }
  d.style.height = dh + 'px'; 
}