﻿setWidth();

function setWidth() {
    try {
        document.getElementById('tdContent').style.width = 'auto';
    } catch (e) {
        setTimeout("setWidth()", 200);
    }
}
