function pward(str)
{
  nextPage = "./member/index.html"; // 移動するページ
  pass = "ns0314"; // パスワード
  if (str == pass) location.href = nextPage;
  else alert("パスワードが違います"); // パスワードが間違った時
}
