// JavaScript Document
function changePasswortStatus() {
  var pw = document.getElementById('test_lgn_pwd').value;

  if(pw.length < 6) status = 'red';
  else if(pw.length >= 6 && pw.length < 9) status = 'orange';
  else if(pw.length >= 9) status = 'green';
  
  document.getElementById('pwd_state').className = 'pwStatus '+status;    
}
