//==============================================================================
function initlogin()
{
  // force le chargement de la page de login dans la frame principale
  // (le nombre de frames est à zero si la page de login est dans la frame
  // principale)
  if (top.window.frames.length > 0)
  {
    top.window.location.reload();
  }
  else
  {
    if (top.document.getElementById("EditIdentifiant").value == ""){
      top.document.getElementById("EditIdentifiant").focus();
    }
    else {
       top.document.getElementById("EditPassword").focus();
    }
    
  }
}

//==============================================================================
function changeLanguage(id) {
  var theform;
  if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
    theform = document.ctl00;
  }
  else {
    theform = document.forms[0];
  }
  theform.Language.value = id;
  theform.submit();
}

