// JScript source code
function arrStringsLanguage(vLanguage) {
    try { eval("arrStrings = arrStrings_" + vLanguage.toUpperCase() + ";"); }
    catch (e) { };
}

// ----------------------------------------------------------------------------
// 	Default Language Strings
// ----------------------------------------------------------------------------
var arrStrings =
    {
        // Common Phrases
        'ImgCount': "Image {x} of {y} ",
        // Do not modify the following line
        '*FIN': ''
    }

// ----------------------------------------------------------------------------
// 	German Language Strings
// ----------------------------------------------------------------------------
var arrStrings_DE =
    {
        'ImgCount': "Bild {x} von {y}",
        // Do not modify the following line
        '*FIN': ''
    }

// ----------------------------------------------------------------------------
// 	French Language Strings
// ----------------------------------------------------------------------------
var arrStrings_FR =
    {
        // Common Phrases
        'ImgCount': "Image n sur c ",
        // Do not modify the following line
        '*FIN': ''
    }


// ----------------------------------------------------------------------------
// 	Spanish Language Strings
// ----------------------------------------------------------------------------
var arrStrings_ES =
    {
        // Common Phrases
        'ImgCount': "Image n sur c ",
        // Do not modify the following line
        '*FIN': ''
    }

