Il problema nasce ahimè da iE6, che non supporta il min-height.
Ho cercato di modificare lo script ma necessito aiuto:
codice:
function adjHeight() {
var altezza1 = document.getElementById('bottom_box_sx').style.offsetheight;
var altezza2 = document.getElementById('bottom_box_dx').style.offsetheight;
if (altezza1.offsetheight > 50) {
altezza1.style.height = (altezza1.offsetheight + 20) + "px";
altezza2.style.height = (altezza2.offsetheight + 20) + "px";
      } 
}
E' sensato?