/* Start Header ------------------------------------------------------------

    Kodak Graphic Communications Canada Company
    Burnaby B.C. Canada
    V5G 4M1

    Copyright (C) 2006 Kodak Graphic Communications Canada Company
    
    Reproduction or disclosure of this file or its contents without the
    prior written consent of Kodak Graphic Communications Canada Company
    is prohibited.

    Purpose  : Javascript for the login page

* End Header --------------------------------------------------------------
*/

/************************************************************ Login_OnLanguageChange()
*
* Redirects to the login page again if the language has changed and nothing is entered
* in the username or password fields
*
************************************************************/
function Login_OnLanguageChange( strCurrentLanguage, strNewLanguage )
{
    objUsernameElement = document.getElementById(kstrUsernameTextboxId);
    objPasswordElement = document.getElementById(kstrPasswordTextboxId);

    // Only refresh the page if nothing's typed into the 
    if ((strCurrentLanguage != strNewLanguage) && (objUsernameElement.value == "") && (objPasswordElement.value == ""))
    {
        strRedirectURL = kstrLoginPageURL + "&Language=" + strNewLanguage;
        window.location = strRedirectURL;
    }    
}
