function J_Password(){
  document.F_Password.login.value = document.F_Authentification.login.value;
  document.F_Password.submit();
}

function J_ValiderAbonne(){
  if ((document.F_Authentification.login.value)&&(document.F_Authentification.pwd.value)) document.F_Authentification.submit(); else alert('Please enter your "User ID" and your "Password" !')
}
    
function J_MotDePasseOublie(){
  if(document.F_Authentification.login.value) J_Password(); else alert('Please enter your "User ID" !')
}