﻿/*
    Correlation tooltips
*/
// Global strings containing common text used in pop-up info screens.
// - This file is currently specific to the ProgramOfStudies.ascx control
//
// g_correlationPrefix       
// g_correlationStudentText  
// g_correlationTeacherText  
// g_correlationSuffix 

//Opens a ToolTip control and populates it with global strings taken from the associated controls language Resource file.
function showTip(correlatedItemCount, isTeacherRef)
{
    var toolTip;

    if(isTeacherRef)
        correlationBoldText = g_correlationTeacherText;
    else
        correlationBoldText = g_correlationStudentText;
            
    toolTip = g_correlationPrefix;
    toolTip += "<span style=\'font-weight:bold\'>"+ correlatedItemCount + " " + correlationBoldText + "</span><br />";
    toolTip += g_correlationSuffix;

    Tip(toolTip, SHADOW, true);
}

function showDesc(toolTip) {
    Tip(toolTip, SHADOW, true);
}

function hideTip()
{
    UnTip();
}
