
function strFetchLocalisedText(intTextIndex)
{
    var strText = "";
    
    if (intTextIndex < mastrLocalisedText.length) 
    {
        strText = mastrLocalisedText[intTextIndex];
    }
    
    return strText;
}