
function syncBoxHeight(){
  if(document.getElementById && document.documentElement.offsetHeight){
    var maxWidth = 0;


    for(var i=0; i<syncBoxHeight.arguments.length; i++){
      var objNode = document.getElementById(syncBoxHeight.arguments[i]);
      if(objNode && objNode.offsetHeight > maxWidth){
        maxWidth = objNode.offsetHeight;
      }
    }


    for(var i=0; i<syncBoxHeight.arguments.length; i++){
      var objNode = document.getElementById(syncBoxHeight.arguments[i]);
      if(objNode){ objNode.style.height = maxWidth+'px'; }
    }
    return 1;
  }
  return 0;
}

