resizeCell: function(ref, dup) {
var fullWidth = ref.offsetWidth;
var innerWidth = 0;
dup.style.width = innerWidth + "px";

while (dup.offsetWidth < fullWidth) {
innerWidth++;
dup.style.width = innerWidth + "px";
}
}