
var COOKIE_LOCALE_NAME = "LQLocale";
var ANGLAIS = "en_US";
var FRANCAIS = "fr_CA";
var ESPAGNOL = "es_ES";

function changeLangue(pLocale)
{
    document.LQLangueForm.langue_redirect.value = window.location;
    document.LQLangueForm.param_lqlangue.value = pLocale;   

    document.LQLangueForm.submit();
}

function getLQLocale()
{
    lCookieArray = document.cookie.split(';');
    for(i = 0; i < lCookieArray.length; ++i)
    {
        lCookie = lCookieArray[i];
        if(lCookie.substr(0, COOKIE_LOCALE_NAME.length) == COOKIE_LOCALE_NAME)
        {
            return lCookie.substr(COOKIE_LOCALE_NAME.length+1);
        }
    }
    
    return null;
}