function check_pw() {
  var pw = document.form1.word1.value;
  if(pw == "xeeyb4") {
    location.href = "pw_entry.html";
  }
  else {
    alert("パスワードが違います");
  }
}
