var strPW = "mebius";

function CheckPrompt() {
    var strRes = prompt("パスワードを入力してください", "");
    if (strRes != null) {
        // キャンセル(null)でないときのみ処理
        if (strRes == strPW) {
            // パスワード確認
			window.open('campaign_for_member.html','campain','width=1100,height=700,scrollbars=yes');return false;
            // location.href = "campain_2.html";
        } else {
            // パスワード否認
            alert("パスワードが違います。");
        }
    }
}

