//-------------------------------------------
var sTicketID;
function SetFrameSize(TicketID, nWidth)
//       ~~~~~~~~~~~~
{
  sTicketID = TicketID;
  AspSupport_RegisterFrameSize(sTicketID, nWidth, document.getElementById("oBoardTbl").clientHeight + 10);
}

//-------------------------------------------

var nCurHeight;
function CheckHeight (TicketID, nWidth)
{
  if (document.body.scrollHeight != nCurHeight)
  {
    // ignore forums floating message
    try
    {
      if (bFM)
        return;
    }
    catch(e) {}
    
    nCurHeight = document.body.scrollHeight;
    SetFrameSize(TicketID, nWidth);
  }
}
//-------------------------------------------