protected void fmvAircraft_DataBound(object sender, EventArgs e)
    {
        FormView fv = sender as FormView;
        Controls_mfbHoverImageList hil = (Controls_mfbHoverImageList)fv.FindControl("mfbHoverImageList");

        hil.Refresh();
    }
        protected static void RefreshImages(Control c)
        {
            Controls_mfbHoverImageList il = c as Controls_mfbHoverImageList;

            if (c != null)
            {
                il.Refresh();
            }
        }