
function makeBoxesUniform(boxPrefix){totalBoxes=1;maxHeight=0;while(curBox=document.getElementById(boxPrefix+totalBoxes)){maxHeight=curBox.offsetHeight>maxHeight?curBox.offsetHeight:maxHeight;totalBoxes++;}
for(i=1;i<totalBoxes;i++){document.getElementById(boxPrefix+i).style.height=maxHeight+'px';}}