function fixIE6heights() {
  var myLis = document.getElementsByTagName("li");
  var myString = '';
  myMaxHeight = 0;
  for(i = 0; i < myLis.length; i++) {
    myString = myLis[i].className;
    if(myString.indexOf('colmarker') >= 0) {
      if(myLis[i].offsetHeight > myMaxHeight)
        myMaxHeight = myLis[i].offsetHeight;
      }
  }
//  alert(myMaxHeight);
  if(myMaxHeight > 334)
    document.getElementById('clocales').style.height = myMaxHeight + 20 + 'px';
}

