function min_height() {
  box_height = document.getElementById('box_container').offsetHeight - 120;
  document.getElementById('content').style.minHeight = box_height + 'px';
}
window.onload = min_height;

