﻿var currentControl = "";

function getHoverText(page, control){
    currentControl = control;
    //(string group, string controlID)
    var theData = 
     $.ajax({
        type: "POST",
        url: "/bll/HelpController.aspx/GetMouseoverHelpText",
        data: "{\"group\":\"" + page + "\",\"controlID\":\"" + control + "\"}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(msg) 
        {
           setTitleValue(msg.d,control);
        },
        error: function(xhr,msg,e)
        {  
            //alert("Sorry!  An error occured.  Please contact us at support@tapinko.com"); //alert(xhr.responseText);         
        }
    });
}

function setTitleValue(theTitle,control){

    $("#" + control).attr("title",theTitle);
    setToolTip(control);

}

function setToolTip(control){
     $("#" + control).tooltip({
        track: true,
        delay: 0,
        showURL: false,
        showBody: " - ",
        fade: 0
    });
}