function TimelinePopupDisplay(idPlaceToShow, idDivToShow, offX, offY, bIsRight)
{
  if(document.lastTLDivToShow == idDivToShow)
  {
    clearTimeout(document.oTLTimeOut);
  }
  else if(document.lastTLDivToShow != 0)
  {
    clearTimeout(document.oTLTimeOut);
    HexSubMenuTimeOut();
  };
  document.lastTLDivToShow = idDivToShow;
  document.lastTLTargetToShow = idPlaceToShow;
  ShowDivEx(idPlaceToShow, idDivToShow, offX, offY, bIsRight);
}

function ReleaseTimelinePopup()
{
  document.oTLTimeOut = setTimeout("TimelineTimeOut()", MENUDELAY_DISAPPEAR);
}

function TimelineTimeOut()
{
  HideDiv(document.lastTLTargetToShow, document.lastTLDivToShow);
}

function HoldTimeline(tlID)
{
  if(document.lastTLDivToShow == tlID)
  {
    clearTimeout(document.oTLTimeOut);
  }
} 
