// JavaScript Document

al_flag = false;
function checkpw(){
	var pswd = prompt("パスワードを入力して下さい","");
	if (!(pswd=="" || pswd==null)){
		location.href = "http://tottori-kai.gyosei.or.jp/" + pswd + "/index.html";
	}else{
		ua = navigator.userAgent;
		var ie7 = false;
		if(! window.opera && ua.indexOf("MSIE") && window.XMLHttpRequest){
			ie7 = true;
		}
		if(ie7 && pswd==null && !al_flag){
			al_flag = true;
		} else {
			alert("なにも入力されていないか、キャンセルボタンが押されました");
		}
	}
}