﻿function AddTip(ctrlID, tipContent) {
    $('#' + ctrlID).qtip({
        content: {
            text: tipContent
        },
        position: {
            my: 'top left',
            at: 'bottom right'

        }
    });

}
