  function displayFlashContainer() {
    var cCell;
    var oCell;
    var wCell;
    if (document.getElementById("selectedCell")) {
    cCell = document.getElementById("selectedCell");
    oCell = cCell.innerHTML;
    wCell = parseInt(cCell.clientWidth)-3;
    cCell.style.position = 'relative';    
    cCell.innerHTML = '<div style="display: block; width: '+ wCell +'px; height: 52px; overflow: hidden; text-align: center; position: relative; _position: absolute; top: 0; _right: 3px; margin-bottom: -10px;">'
     + '<div style="display: block; margin-bottom: -50px;">'
     + DisplayFlashReturn('/images/menu.swf', '384', '52', 'transparent', 'rt')
     + '</div>'
     + '<table cellpadding="0" cellspacing="0" border="0" style="position: relative; margin-left: auto; margin-right: auto; margin-bottom: -10px;"><tr><td valign="middle" align="center" height="52" style="background: none;">'
     + oCell
     + '</td></tr></table></div>';
    cCell.style.width = wCell+3 + 'px';
    }
}
